dart:mirrors
IsolateMirror class
An IsolateMirror reflects an isolate.
- Implemented types
-
Constructors
- IsolateMirror()
Properties
- debugName → String
read-only
- A unique name used to refer to the isolate in debugging messages.
- hashCode → int
read-only, inherited
- The hash code for this object.
- isCurrent → bool
read-only
- Whether this mirror reflects the currently running isolate.
- rootLibrary → LibraryMirror
read-only
- The root library for the reflected isolate.
- runtimeType → Type
read-only, inherited
- A representation of the runtime type of the object.
Methods
- loadUri(Uri uri) → Future<LibraryMirror>
- Loads the library at the given uri into this isolate.
- noSuchMethod(Invocation invocation) → dynamic
inherited
- Invoked when a non-existent method or property is accessed.
- toString() → String
inherited
- A string representation of this object.
Operators
- operator ==(Object other) → bool
override
- Whether
other is an IsolateMirror on the same isolate as this mirror.