copyWith method

DocumentCountry copyWith({
  1. String? type,
  2. String? code2,
  3. String? code3,
  4. String? name,
})

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);