Transportation constructor
Transportation({
- bool? airportShuttle,
- String? airportShuttleException,
- bool? carRentalOnProperty,
- String? carRentalOnPropertyException,
- bool? freeAirportShuttle,
- String? freeAirportShuttleException,
- bool? freePrivateCarService,
- String? freePrivateCarServiceException,
- bool? localShuttle,
- String? localShuttleException,
- bool? privateCarService,
- String? privateCarServiceException,
- bool? transfer,
- String? transferException,
Implementation
Transportation({
this.airportShuttle,
this.airportShuttleException,
this.carRentalOnProperty,
this.carRentalOnPropertyException,
this.freeAirportShuttle,
this.freeAirportShuttleException,
this.freePrivateCarService,
this.freePrivateCarServiceException,
this.localShuttle,
this.localShuttleException,
this.privateCarService,
this.privateCarServiceException,
this.transfer,
this.transferException,
});