copyWith method
Implementation
DocumentCountry copyWith({String? type, String? code2, String? code3, String? name}) => DocumentCountry(type: type ?? this.type, code2: code2 ?? this.code2, code3: code3 ?? this.code3, name: name ?? this.name);
DocumentCountry copyWith({String? type, String? code2, String? code3, String? name}) => DocumentCountry(type: type ?? this.type, code2: code2 ?? this.code2, code3: code3 ?? this.code3, name: name ?? this.name);