On this page
Invocation.setter constructor
Creates an invocation corresponding to a setter invocation.
This constructor accepts any Symbol as memberName
, but remember that actual setter names end in =
, so the invocation corresponding to object.member = value
is
Invocation.setter(const Symbol("member="), value)
Implementation
factory Invocation.setter(Symbol memberName, Object? argument) =
_Invocation.setter;
© 2012 the Dart project authors
Licensed under the BSD 3-Clause "New" or "Revised" License.
https://api.dart.dev/stable/2.18.5/dart-core/Invocation/Invocation.setter.html