getNotificationStatus method

Future<bool> getNotificationStatus()

Implementation

Future<bool> getNotificationStatus() async {
  return storage.read(SessionManagerKeys.isNotificationsEnabled) ?? true; // Default to true if not set
}