copyWith method Null safety
Copies the current object editing one or more properties
Implementation
AppSettings copyWith({Locale? locale, bool? isMetric}) {
return AppSettings(
locale: locale ?? this.locale,
isMetric: isMetric ?? isMetric,
);
}