Representation of the invocation of a member on an object.
This is the type of objects passed to Object.noSuchMethod when an object doesn't support the member invocation that was attempted on it.
Properties
- bool isAccessor
-
read-onlyWhether the invocation was a getter or a setter call.
- bool isGetter
-
read-onlyWhether the invocation was a getter call. If so, both types of arguments is empty.
- bool isMethod
-
read-onlyWhether the invocation was a method call.
- bool isSetter
-
read-onlyWhether the invocation was a setter call.
- Symbol memberName
-
read-onlyThe name of the invoked member.
- Map<Symbol> namedArguments
-
read-onlyAn unmodifiable view of the named arguments of the call.
- List positionalArguments
-
read-onlyAn unmodifiable view of the positional arguments of the call.