IsolateGroup constructor

IsolateGroup(
  1. {String? id,
  2. String? number,
  3. String? name,
  4. bool? isSystemIsolateGroup,
  5. List<IsolateRef>? isolates}
)

Implementation

IsolateGroup({
  this.id,
  this.number,
  this.name,
  this.isSystemIsolateGroup,
  this.isolates,
});