An IsolateMirror reflects an isolate.

Implements

Properties

debugName String

Returns a unique name used to refer to an isolate in debugging messages.

read-only
hashCode int

Get a hash code for this object.

read-only, inherited
isCurrent bool

Returns true if and only if this mirror reflects the currently running isolate. Otherwise returns false.

read-only
rootLibrary LibraryMirror

Returns a LibraryMirror on the root library for this isolate.

read-only
runtimeType Type

A representation of the runtime type of the object.

read-only, inherited

Constructors

IsolateMirror()

Operators

operator ==(other) bool

Returns true if this mirror is equal to other. Otherwise returns false. The equality holds if and only if (1) other is a mirror of the same kind and (2) the isolate being reflected by this mirror is the same isolate being reflected by other.

Methods

noSuchMethod(Invocation invocation) → dynamic

noSuchMethod is invoked when users invoke a non-existent method on an object. The name of the method and the arguments of the invocation are passed to noSuchMethod in an Invocation. If noSuchMethod returns a value, that value becomes the result of the original invocation.

inherited
toString() String

Returns a string representation of this object.

inherited