Transportation constructor

Transportation({
  1. bool? airportShuttle,
  2. String? airportShuttleException,
  3. bool? carRentalOnProperty,
  4. String? carRentalOnPropertyException,
  5. bool? freeAirportShuttle,
  6. String? freeAirportShuttleException,
  7. bool? freePrivateCarService,
  8. String? freePrivateCarServiceException,
  9. bool? localShuttle,
  10. String? localShuttleException,
  11. bool? privateCarService,
  12. String? privateCarServiceException,
  13. bool? transfer,
  14. 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,
});