VMInstanceRef class
A reference to an instance of a Dart class on the remote VM.
Note that subclasses of this like List and Map will only be used for the built-in implementations of those classes. User-defined implementations will be plain VMInstanceRefs or VMInstances instead.
Properties
- hashCode → int
-
The hash code for this object. [...]
read-only, override
- klass → VMClassRef
-
final
- observatoryUrl → Uri
-
A relative URL for humans to inspect and possibly interact with this
object in the Observatory UI. [...]
read-only, override
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
Methods
-
evaluate(
String expression) → Future< VMInstanceRef> -
Evaluates
expression
in the context of this instance. [...] -
getValue(
{dynamic onUnknownValue(dynamic value)}) → Future< Object> - Returns a local Dart copy of the remote Dart object. [...]
-
load(
) → Future< VMInstance> -
Loads a full version of this object. [...]
override
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
toString(
) → String -
A string representation of this object. [...]
override
Operators
-
operator ==(
dynamic other) → bool -
The equality operator. [...]
override