updatePreferences method
- String? locale,
- AppThemeMode? themeMode,
- TextSizePreference? textSize,
- bool? notificationsEnabled,
Implementation
void updatePreferences({
String? locale,
AppThemeMode? themeMode,
TextSizePreference? textSize,
bool? notificationsEnabled,
}) {
emit(state.copyWith(
locale: locale,
themePreference: themeMode,
textSizePreference: textSize,
notificationsEnabled: notificationsEnabled,
));
}