copy method

AndrossySettings copy({
  1. ThemeMode? theme,
  2. Locale? locale,
})

Implementation

AndrossySettings copy({
  ThemeMode? theme,
  Locale? locale,
}) {
  return AndrossySettings(
    theme: theme ?? this.theme,
    locale: locale ?? this.locale,
  );
}