Isolate constructor

Isolate({
  1. String? id,
  2. String? number,
  3. String? name,
  4. bool? isSystemIsolate,
  5. String? isolateGroupId,
  6. List<IsolateFlag>? isolateFlags,
  7. int? startTime,
  8. bool? runnable,
  9. int? livePorts,
  10. bool? pauseOnExit,
  11. Event? pauseEvent,
  12. List<LibraryRef>? libraries,
  13. List<Breakpoint>? breakpoints,
  14. String? exceptionPauseMode,
  15. LibraryRef? rootLib,
  16. Error? error,
  17. List<String>? extensionRPCs,
})

Implementation

Isolate({
  this.id,
  this.number,
  this.name,
  this.isSystemIsolate,
  this.isolateGroupId,
  this.isolateFlags,
  this.startTime,
  this.runnable,
  this.livePorts,
  this.pauseOnExit,
  this.pauseEvent,
  this.libraries,
  this.breakpoints,
  this.exceptionPauseMode,
  this.rootLib,
  this.error,
  this.extensionRPCs,
});