Transportation.fromJson constructor

Transportation.fromJson(
  1. Map json_
)

Implementation

Transportation.fromJson(core.Map json_)
  : this(
      airportShuttle: json_['airportShuttle'] as core.bool?,
      airportShuttleException:
          json_['airportShuttleException'] as core.String?,
      carRentalOnProperty: json_['carRentalOnProperty'] as core.bool?,
      carRentalOnPropertyException:
          json_['carRentalOnPropertyException'] as core.String?,
      freeAirportShuttle: json_['freeAirportShuttle'] as core.bool?,
      freeAirportShuttleException:
          json_['freeAirportShuttleException'] as core.String?,
      freePrivateCarService: json_['freePrivateCarService'] as core.bool?,
      freePrivateCarServiceException:
          json_['freePrivateCarServiceException'] as core.String?,
      localShuttle: json_['localShuttle'] as core.bool?,
      localShuttleException: json_['localShuttleException'] as core.String?,
      privateCarService: json_['privateCarService'] as core.bool?,
      privateCarServiceException:
          json_['privateCarServiceException'] as core.String?,
      transfer: json_['transfer'] as core.bool?,
      transferException: json_['transferException'] as core.String?,
    );