class
VariableMirror

A VariableMirror reflects a Dart language variable declaration.

Implements
Implemented by

Properties

TypeMirror type
read-only
Returns a mirror on the type of the reflectee.
bool isStatic
read-only
Returns true if the reflectee is a static variable. Otherwise returns false.
bool isFinal
read-only
Returns true if the reflectee is a final variable. Otherwise returns false.
bool isConst
read-only
Returns true if the reflectee is declared const. Otherwise returns false.
DeclarationMirror owner
read-only , inherited
A mirror on the owner of this Dart language entity. This is the declaration immediately surrounding the reflectee.
SourceLocation location
read-only , inherited
The source location of this Dart language entity, or null if the entity is synthetic.
bool isPrivate
read-only , inherited
Returns true if this declaration is considered private according to the Dart language specification. Always returns false if this declaration is a library. Otherwise return false.
Symbol simpleName
read-only , inherited
The simple name for this Dart language entity.
List<InstanceMirror> metadata
read-only , inherited
A list of the metadata associated with this declaration.
bool isTopLevel
read-only , inherited
Is this declaration top-level?
Symbol qualifiedName
read-only , inherited
The fully-qualified name for this Dart language entity.

Constructors

VariableMirror()

Operators

operator ==(other) → bool
Returns true if this mirror is equal to other.