toggleNotifications method

void toggleNotifications(
  1. bool enabled
)

Toggles notifications (for future use)

Implementation

void toggleNotifications(bool enabled) {
  emit(state.copyWith(notificationsEnabled: enabled));
  _repository.saveAppPreferences(state.toAppPreferences());
}