Parking.fromJson constructor

Parking.fromJson(
  1. Map json_
)

Implementation

Parking.fromJson(core.Map json_)
  : this(
      electricCarChargingStations:
          json_['electricCarChargingStations'] as core.bool?,
      electricCarChargingStationsException:
          json_['electricCarChargingStationsException'] as core.String?,
      freeParking: json_['freeParking'] as core.bool?,
      freeParkingException: json_['freeParkingException'] as core.String?,
      freeSelfParking: json_['freeSelfParking'] as core.bool?,
      freeSelfParkingException:
          json_['freeSelfParkingException'] as core.String?,
      freeValetParking: json_['freeValetParking'] as core.bool?,
      freeValetParkingException:
          json_['freeValetParkingException'] as core.String?,
      parkingAvailable: json_['parkingAvailable'] as core.bool?,
      parkingAvailableException:
          json_['parkingAvailableException'] as core.String?,
      selfParkingAvailable: json_['selfParkingAvailable'] as core.bool?,
      selfParkingAvailableException:
          json_['selfParkingAvailableException'] as core.String?,
      valetParkingAvailable: json_['valetParkingAvailable'] as core.bool?,
      valetParkingAvailableException:
          json_['valetParkingAvailableException'] as core.String?,
    );