enableLocalNotification property

bool get enableLocalNotification

Whether local notifications are enabled.

Implementation

bool get enableLocalNotification => _enableLocalNotification;
set enableLocalNotification (bool value)

Implementation

set enableLocalNotification(bool value) {
  if (_enableLocalNotification == value) {
    return;
  }
  _enableLocalNotification = value;
  notifyListeners();
}