notification property

  1. @override
INotification? get notification
override

Property getter and setter for notification:

Implementation

@override INotification? get notification => _notification;
  1. @override
set notification (INotification? notification)
override

Implementation

@override set notification(INotification? notification) {
  this._notification = notification;
  wrapped['notification'] = jsonLiteral(notification);
}