AppPreferencesDto.fromOnboardingPreferences constructor
- 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;
}