updateNotificationEnabled method
Implementation
Future<void> updateNotificationEnabled(bool value) async {
if (kDebugMode) {
print('settingsService.updateNotificationEnabled value = $value');
}
_prefs.setBool('notification.enabled', value);
}