Flutter
dart:core
Invocation
isAccessor property
isAccessor
Invocation class
Constructors
Invocation
genericMethod
getter
method
setter
Properties
isAccessor
isGetter
isMethod
isSetter
memberName
namedArguments
positionalArguments
typeArguments
hashCode
runtimeType
Methods
noSuchMethod
toString
Operators
operator ==
isAccessor property
bool
isAccessor
Whether the invocation was a getter or a setter call.
Implementation
bool get isAccessor => isGetter || isSetter;