getPushNotifications method

bool getPushNotifications()

Implementation

bool getPushNotifications() {
  final storedValue = getValue(AppConstants.pushNotificationsKey);
  if (storedValue is String) return storedValue.toLowerCase() == 'true';
  return storedValue is bool ? storedValue : false;
}