GoogleMapsPlacesV1PlaceParkingOptions.fromJson constructor

GoogleMapsPlacesV1PlaceParkingOptions.fromJson(
  1. Map json_
)

Implementation

GoogleMapsPlacesV1PlaceParkingOptions.fromJson(core.Map json_)
    : this(
        freeGarageParking: json_.containsKey('freeGarageParking')
            ? json_['freeGarageParking'] as core.bool
            : null,
        freeParkingLot: json_.containsKey('freeParkingLot')
            ? json_['freeParkingLot'] as core.bool
            : null,
        freeStreetParking: json_.containsKey('freeStreetParking')
            ? json_['freeStreetParking'] as core.bool
            : null,
        paidGarageParking: json_.containsKey('paidGarageParking')
            ? json_['paidGarageParking'] as core.bool
            : null,
        paidParkingLot: json_.containsKey('paidParkingLot')
            ? json_['paidParkingLot'] as core.bool
            : null,
        paidStreetParking: json_.containsKey('paidStreetParking')
            ? json_['paidStreetParking'] as core.bool
            : null,
        valetParking: json_.containsKey('valetParking')
            ? json_['valetParking'] as core.bool
            : null,
      );