dart:mirrors
VariableMirror class
A VariableMirror reflects a Dart language variable declaration.
- Implemented types
-
- Implementers
Constructors
- VariableMirror()
Properties
- hashCode → int
read-only, inherited
- The hash code for this object.
- isConst → bool
read-only
- Returns
true if the reflectee is declared const. Otherwise returns false. - isExtensionMember → bool
read-only
- Is the reflectee an extension member?
- isFinal → bool
read-only
- Returns
true if the reflectee is a final variable. Otherwise returns false. - isPrivate → bool
read-only, inherited
- Whether this declaration is library private.
- isStatic → bool
read-only
- Returns
true if the reflectee is a static variable. Otherwise returns false. - isTopLevel → bool
read-only, inherited
- Whether this declaration is top-level.
- location → SourceLocation?
read-only, inherited
- The source location of this Dart language entity, or
null if the entity is synthetic. - metadata → List<InstanceMirror>
read-only, inherited
- A list of the metadata associated with this declaration.
- owner → DeclarationMirror?
read-only, inherited
- A mirror on the owner of this Dart language entity.
- qualifiedName → Symbol
read-only, inherited
- The fully-qualified name for this Dart language entity.
- runtimeType → Type
read-only, inherited
- A representation of the runtime type of the object.
- simpleName → Symbol
read-only, inherited
- The simple name for this Dart language entity.
- type → TypeMirror
read-only
- Returns a mirror on the type of the reflectee.
Methods
- 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 this mirror is equal to
other.