copyWith method

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

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