AirportContinentContract constructor

AirportContinentContract({
  1. required String code,
  2. String? name,
})

Returns a new AirportContinentContract instance.

Implementation

AirportContinentContract({
  required this.code,
  this.name,
});