On this page
MethodMirror class
A MethodMirror reflects a Dart language function, method, constructor, getter, or setter.
- Implemented types
Constructors
Properties
- constructorName → Symbol
read-only
- The constructor name for named constructors and factory methods.
- hashCode → int
read-only, inherited
- The hash code for this object.
- isAbstract → bool
read-only
- Is the reflectee abstract?
- isConstConstructor → bool
read-only
- Is the reflectee a const constructor?
- isConstructor → bool
read-only
- Is the reflectee a constructor?
- isExtensionMember → bool
read-only
- Is the reflectee an extension method?
- isFactoryConstructor → bool
read-only
- Is the reflectee a factory constructor?
- isGenerativeConstructor → bool
read-only
- Is the reflectee a generative constructor?
- isGetter → bool
read-only
- Is the reflectee a getter?
- isOperator → bool
read-only
- Is the reflectee an operator?
- isPrivate → bool
read-only, inherited
- Whether this declaration is library private.
- isRedirectingConstructor → bool
read-only
- Is the reflectee a redirecting constructor?
- isRegularMethod → bool
read-only
- Is the reflectee a regular function or method?
- isSetter → bool
read-only
- Is the reflectee a setter?
- isStatic → bool
read-only
- A function is considered non-static iff it is permited to refer to 'this'.
- isSynthetic → bool
read-only
- Returns true if the reflectee is synthetic, and returns false otherwise.
- isTopLevel → bool
read-only, inherited
- Whether this declaration is top-level.
- location → SourceLocation?
read-only, inherited
-
The source location of this Dart language entity, or
null
if the entity is synthetic. - metadata → List<
InstanceMirror> read-only, inherited - A list of the metadata associated with this declaration.
- owner → DeclarationMirror?
read-only, inherited
- A mirror on the owner of this Dart language entity.
- parameters → List<
ParameterMirror> read-only - A list of mirrors on the parameters for the reflectee.
- qualifiedName → Symbol
read-only, inherited
- The fully-qualified name for this Dart language entity.
- returnType → TypeMirror
read-only
- A mirror on the return type for the reflectee.
- runtimeType → Type
read-only, inherited
- A representation of the runtime type of the object.
- simpleName → Symbol
read-only, inherited
- The simple name for this Dart language entity.
- source → String?
read-only
- The source code for the reflectee, if available. Otherwise null.
Methods
- noSuchMethod(
Invocation invocation) → dynamic inherited - Invoked when a non-existent method or property is accessed.
- toString(
) → String inherited - A string representation of this object.
Operators
- operator ==(
Object other) → bool override -
Whether this mirror is equal to
other
.
© 2012 the Dart project authors
Licensed under the BSD 3-Clause "New" or "Revised" License.
https://api.dart.dev/stable/2.18.5/dart-mirrors/MethodMirror-class.html