getNotificationPermission method

bool getNotificationPermission()

Implementation

bool getNotificationPermission() {
  final storedValue = _getValue(AppConstants.notificationPermission);
  if (storedValue is String) {
    return storedValue.toLowerCase() == 'true' ? true : false;
  }
  return false;
}