copyWith method

Settings copyWith({
  1. ThemeMode? themeMode,
  2. Locale? locale,
})

Implementation

Settings copyWith({ThemeMode? themeMode, Locale? locale}) {
  return Settings(themeMode: themeMode ?? this.themeMode, locale: locale ?? this.locale);
}