copyWith method
Implementation
LocalisationSettings copyWith({
String? isoLanguageCode,
String? isoCurrencyCode,
String? isoCountryCode,
String? isoTimezone,
String? dateFormat,
String? timeFormat,
}) {
return LocalisationSettings(
isoLanguageCode: isoLanguageCode ?? this.isoLanguageCode,
isoCurrencyCode: isoCurrencyCode ?? this.isoCurrencyCode,
isoCountryCode: isoCountryCode ?? this.isoCountryCode,
isoTimezone: isoTimezone ?? this.isoTimezone,
dateFormat: dateFormat ?? this.dateFormat,
timeFormat: timeFormat ?? this.timeFormat,
);
}