copyWith method
Implementation
CountryCode copyWith({
String? name,
String? dialCode,
String? code,
}) {
return CountryCode(
name: name ?? this.name,
dialCode: dialCode ?? this.dialCode,
code: code ?? this.code,
);
}
CountryCode copyWith({
String? name,
String? dialCode,
String? code,
}) {
return CountryCode(
name: name ?? this.name,
dialCode: dialCode ?? this.dialCode,
code: code ?? this.code,
);
}