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-onlyinherited
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-onlyinherited
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-onlyinherited
location → SourceLocation?
The source location of this Dart language entity, or null if the entity is synthetic.
read-onlyinherited
metadata → List<InstanceMirror>
A list of the metadata associated with this declaration.
read-onlyinherited
owner → DeclarationMirror?
A mirror on the owner of this Dart language entity.
read-onlyinherited
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-onlyinherited
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-onlyinherited
simpleName → Symbol
The simple name for this Dart language entity.
read-onlyinherited
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