fromNotification property

bool get fromNotification

Whether the end drawer was triggered by an incoming notification.

Implementation

bool get fromNotification => _fromNotification;
set fromNotification (bool value)

Update the notification-origin flag for the end drawer.

Implementation

set fromNotification(bool value) {
  if (_fromNotification == value) return;
  _fromNotification = value;
  notifyListeners();
}