AppPreferencesDto.fromOnboardingPreferences constructor

AppPreferencesDto.fromOnboardingPreferences(
  1. OnboardingPreferences prefs
)

Implementation

factory AppPreferencesDto.fromOnboardingPreferences(
    OnboardingPreferences prefs) {
  return AppPreferencesDto()
    ..locale = prefs.locale
    ..themeMode = prefs.themeMode.name
    ..textSize = prefs.textSize.name
    ..notificationsEnabled = prefs.notificationsEnabled
    ..highContrastEnabled = false;
}