isPrepareNotification property
bool
get
isPrepareNotification
Implementation
bool get isPrepareNotification =>
_getAttribute<bool>(kPrepareNotification, false);
set
isPrepareNotification
(bool? x)
pass null
to remove key from attributes
Implementation
set isPrepareNotification(bool? x) => (x == null)
? _attributes.remove(kPrepareNotification)
: _attributes[kPrepareNotification] = x;