VM constructor

VM({
  1. String? name,
  2. int? architectureBits,
  3. String? hostCPU,
  4. String? operatingSystem,
  5. String? targetCPU,
  6. String? version,
  7. int? pid,
  8. int? startTime,
  9. List<IsolateRef>? isolates,
  10. List<IsolateGroupRef>? isolateGroups,
  11. List<IsolateRef>? systemIsolates,
  12. List<IsolateGroupRef>? systemIsolateGroups,
})

Implementation

VM({
  this.name,
  this.architectureBits,
  this.hostCPU,
  this.operatingSystem,
  this.targetCPU,
  this.version,
  this.pid,
  this.startTime,
  this.isolates,
  this.isolateGroups,
  this.systemIsolates,
  this.systemIsolateGroups,
});