isPrepareNotification property

bool isPrepareNotification

Implementation

bool get isPrepareNotification =>
    _getAttribute<bool>(kPrepareNotification, false);
void isPrepareNotification=(bool? x)

pass null to remove key from attributes

Implementation

set isPrepareNotification(bool? x) => (x == null)
    ? _attributes.remove(kPrepareNotification)
    : _attributes[kPrepareNotification] = x;