copyWith method
Implementation
TimezoneModel copyWith({
String? value,
String? abbr,
double? offset,
bool? isdst,
String? text,
List<String>? utc,
}) =>
TimezoneModel(
value: value ?? this.value,
abbr: abbr ?? this.abbr,
offset: offset ?? this.offset,
isdst: isdst ?? this.isdst,
text: text ?? this.text,
utc: utc ?? this.utc,
);