toDomain method

AppPreferences toDomain()

Implementation

AppPreferences toDomain() {
  return AppPreferences(
    locale: locale,
    themeMode: AppThemeMode.values.byName(themeMode),
    textSize: TextSizePreference.values.byName(textSize),
    notificationsEnabled: notificationsEnabled,
    highContrastEnabled: highContrastEnabled,
  );
}