IsolateGroup class Null safety
An IsolateGroup
object provides information about an isolate group in the
VM.
- Inheritance
- Implemented types
Constructors
-
IsolateGroup({required String? id, required String? number, required String? name, required bool? isSystemIsolateGroup, required List<
IsolateRef> ? isolates})
Properties
- hashCode → int
-
The hash code for this object. [...]
read-only, override
- id ↔ String?
-
The id which is passed to the getIsolateGroup RPC to reload this isolate.
read / write, override
-
isolates
↔ List<
IsolateRef> ? -
A list of all isolates in this isolate group.
read / write
- isSystemIsolateGroup ↔ bool?
-
Specifies whether the isolate group was spawned by the VM or embedder for
internal use. If
false
, this isolate group is likely running user code.read / write, override -
json
↔ Map<
String, dynamic> ? -
read / write, inherited
- name ↔ String?
-
A name identifying this isolate group. Not guaranteed to be unique.
read / write, override
- number ↔ String?
-
A numeric id for this isolate, represented as a string. Unique.
read / write, override
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
- type → String
-
read-only, override
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent 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. [...]
override
Static Methods
-
parse(
Map< String, dynamic> ? json) → IsolateGroup? -
override