VM class

Inheritance
Implemented types

Constructors

VM({String? name, int? architectureBits, String? hostCPU, String? operatingSystem, String? targetCPU, String? version, int? pid, int? startTime, List<IsolateRef>? isolates, List<IsolateGroupRef>? isolateGroups, List<IsolateRef>? systemIsolates, List<IsolateGroupRef>? systemIsolateGroups})

Properties

architectureBits int?
Word length on target architecture (e.g. 32, 64).
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
hostCPU String?
The CPU we are actually running on.
getter/setter pair
isolateGroups List<IsolateGroupRef>?
A list of isolate groups running in the VM.
getter/setter pair
isolates List<IsolateRef>?
A list of isolates running in the VM.
getter/setter pair
json Map<String, dynamic>?
getter/setter pairinherited
name String?
A name identifying this vm. Not guaranteed to be unique.
getter/setter pairoverride
operatingSystem String?
The operating system we are running on.
getter/setter pair
pid int?
The process id for the VM.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
startTime int?
The time that the VM started in milliseconds since the epoch.
getter/setter pair
systemIsolateGroups List<IsolateGroupRef>?
A list of isolate groups which contain system isolates running in the VM.
getter/setter pair
systemIsolates List<IsolateRef>?
A list of system isolates running in the VM.
getter/setter pair
targetCPU String?
The CPU we are generating code for.
getter/setter pair
type String
no setteroverride
version String?
The Dart VM version string.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
override
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

parse(Map<String, dynamic>? json) VM?
override