updateFromAppPreferences method

void updateFromAppPreferences(
  1. AppPreferences prefs
)

Updates this model from AppPreferences entity

Implementation

void updateFromAppPreferences(AppPreferences prefs) {
  locale = prefs.locale;
  textSize = prefs.textSize;
  themeMode = prefs.themeMode;
  notificationsEnabled = prefs.notificationsEnabled;
  highContrastEnabled = prefs.highContrastEnabled;
}