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