An InstanceMirror reflects an instance of a Dart language object.
- Implements
- Implemented by
Properties
- hashCode → int
-
Get a hash code for this object.…
read-only, inherited - hasReflectee → bool
-
Does
reflectee
contain the instance reflected by this mirror? This will always be true in the local case (reflecting instances in the same isolate), but only true in the remote case if this mirror reflects a simple value.…read-only - reflectee → dynamic
-
If the
InstanceMirror
reflects an instance it is meaningful to have a local reference to, we provide access to the actual instance here.…read-only - runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited - type → ClassMirror
-
A mirror on the type of the reflectee.…
read-only
Constructors
Operators
-
operator ==(
other) → bool -
Returns true if this mirror is equal to
other
. The equality holds if and only if (1)other
is a mirror of the same kind and (2) either (a) hasReflectee is true and so isidentical(reflectee, other.reflectee)
or (b) the remote objects reflected by this mirror and byother
are identical.
Methods
-
delegate(
Invocation invocation) → dynamic -
Perform
invocation
onreflectee
. Equivalent to…inherited -
getField(
Symbol fieldName) → InstanceMirror -
Invokes a getter and returns a mirror on the result. The getter can be the implicit getter for a field or a user-defined getter method.…
inherited -
invoke(
Symbol memberName, positionalArguments, [Map<Symbol, dynamic> namedArguments]) → InstanceMirror -
Invokes the named function and returns a mirror on the result.…
inherited -
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 -
setField(
Symbol fieldName, Object value) → InstanceMirror -
Invokes a setter and returns a mirror on the result. The setter may be either the implicit setter for a non-final field or a user-defined setter method.…
inherited -
toString(
) → String -
Returns a string representation of this object.
inherited