IsolateRef constructor Null safety

IsolateRef(
  1. {String? id,
  2. String? number,
  3. String? name,
  4. bool? isSystemIsolate}
)

Implementation

IsolateRef({
  this.id,
  this.number,
  this.name,
  this.isSystemIsolate,
});