W3cubDocs

/Dart 2

MethodMirror class

A MethodMirror reflects a Dart language function, method, constructor, getter, or setter.

Implemented types

Constructors

MethodMirror()

Properties

constructorNameSymbol
read-only
The constructor name for named constructors and factory methods. [...]
isAbstractbool
read-only
Is the reflectee abstract?
isConstConstructorbool
read-only
Is the reflectee a const constructor?
isConstructorbool
read-only
Is the reflectee a constructor?
isFactoryConstructorbool
read-only
Is the reflectee a factory constructor?
isGenerativeConstructorbool
read-only
Is the reflectee a generative constructor?
isGetterbool
read-only
Is the reflectee a getter?
isOperatorbool
read-only
Is the reflectee an operator?
isRedirectingConstructorbool
read-only
Is the reflectee a redirecting constructor?
isRegularMethodbool
read-only
Is the reflectee a regular function or method? [...]
isSetterbool
read-only
Is the reflectee a setter?
isStaticbool
read-only
A function is considered non-static iff it is permited to refer to 'this'. [...]
isSyntheticbool
read-only
Returns true if the reflectee is synthetic, and returns false otherwise. [...]
parametersList<ParameterMirror>
read-only
A list of mirrors on the parameters for the reflectee.
returnTypeTypeMirror
read-only
A mirror on the return type for the reflectee.
sourceString
read-only
The source code for the reflectee, if available. Otherwise null.
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

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
override
Whether this mirror is equal to other. [...]

© 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/MethodMirror-class.html