W3cubDocs

/Dart 2

TypeMirror class

A TypeMirror reflects a Dart language class, typedef, function type or type variable.

Implemented types
Implementers

Constructors

TypeMirror()

Properties

hasReflectedTypebool
read-only
Returns true if this mirror reflects dynamic, a non-generic class or typedef, or an instantiated generic class or typedef in the current isolate. Otherwise, returns false.
isOriginalDeclarationbool
read-only
Is this the original declaration of this type? [...]
originalDeclarationTypeMirror
read-only
A mirror on the original declaration of this type. [...]
reflectedTypeType
read-only
If hasReflectedType returns true, returns the corresponding Type. Otherwise, an UnsupportedError is thrown.
typeArgumentsList<TypeMirror>
read-only
An immutable list with mirrors for all type arguments for this type. [...]
typeVariablesList<TypeVariableMirror>
read-only
An immutable list with mirrors for all type variables for this type. [...]
hashCodeint
read-only, inherited
The hash code for this object. [...]
isPrivatebool
read-only, inherited
Whether this declaration is library private. [...]
isTopLevelbool
read-only, inherited
Whether this declaration is top-level. [...]
locationSourceLocation
read-only, inherited
The source location of this Dart language entity, or null if the entity is synthetic. [...]
metadataList<InstanceMirror>
read-only, inherited
A list of the metadata associated with this declaration. [...]
ownerDeclarationMirror
read-only, inherited
A mirror on the owner of this Dart language entity. [...]
qualifiedNameSymbol
read-only, inherited
The fully-qualified name for this Dart language entity. [...]
runtimeTypeType
read-only, inherited
A representation of the runtime type of the object.
simpleNameSymbol
read-only, inherited
The simple name for this Dart language entity. [...]

Methods

isAssignableTo(TypeMirror other) → bool
Checks the assignability relationship, denoted by <=> in the language specification. [...]
isSubtypeOf(TypeMirror other) → bool
Checks the subtype relationship, denoted by <: in the language specification. [...]
noSuchMethod(Invocation invocation) → dynamic
inherited
Invoked when a non-existent method or property is accessed. [...]
toString() → String
inherited
Returns a string representation of this object.

Operators

operator ==(dynamic other) → bool
inherited
The equality operator. [...]

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.5.0/dart-mirrors/TypeMirror-class.html