Inspect.named constructor

*<Null safety>*

Inspect.named(String name)

Implementation

factory Inspect.named(String name) {
  var context = StartupContext.fromStartupInfo();
  var writer = VmoWriter.withSize(vmoSize);
  var fileName = _nextInstanceWithName(name);
  return InspectImpl(context.outgoing.diagnosticsDir(), fileName, writer);
}