MethodMirror class Null safety

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

Implemented types

Constructors

MethodMirror()

Properties

constructorName → Symbol
The constructor name for named constructors and factory methods. [...]
read-only
hashCode → int
The hash code for this object. [...]
read-only, inherited
isAbstract → bool
Is the reflectee abstract?
read-only
isConstConstructor → bool
Is the reflectee a const constructor?
read-only
isConstructor → bool
Is the reflectee a constructor?
read-only
isExtensionMember → bool
Is the reflectee an extension method?
read-only
isFactoryConstructor → bool
Is the reflectee a factory constructor?
read-only
isGenerativeConstructor → bool
Is the reflectee a generative constructor?
read-only
isGetter → bool
Is the reflectee a getter?
read-only
isOperator → bool
Is the reflectee an operator?
read-only
isPrivate → bool
Whether this declaration is library private. [...]
read-only, inherited
isRedirectingConstructor → bool
Is the reflectee a redirecting constructor?
read-only
isRegularMethod → bool
Is the reflectee a regular function or method? [...]
read-only
isSetter → bool
Is the reflectee a setter?
read-only
isStatic → bool
A function is considered non-static iff it is permited to refer to 'this'. [...]
read-only
isSynthetic → bool
Returns true if the reflectee is synthetic, and returns false otherwise. [...]
read-only
isTopLevel → bool
Whether this declaration is top-level. [...]
read-only, inherited
location → SourceLocation?
The source location of this Dart language entity, or null if the entity is synthetic. [...]
read-only, inherited
metadata → List<InstanceMirror>
A list of the metadata associated with this declaration. [...]
read-only, inherited
owner → DeclarationMirror?
A mirror on the owner of this Dart language entity. [...]
read-only, inherited
parameters → List<ParameterMirror>
A list of mirrors on the parameters for the reflectee.
read-only
qualifiedName → Symbol
The fully-qualified name for this Dart language entity. [...]
read-only, inherited
returnType → TypeMirror
A mirror on the return type for the reflectee.
read-only
runtimeType → Type
A representation of the runtime type of the object.
read-only, inherited
simpleName → Symbol
The simple name for this Dart language entity. [...]
read-only, inherited
source → String?
The source code for the reflectee, if available. Otherwise null.
read-only

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed. [...]
inherited
toString() → String
A string representation of this object. [...]
inherited

Operators

operator ==(Object other) → bool
Whether this mirror is equal to other. [...]
override