GoogleMapsPlacesV1PriceRange.fromJson constructor

GoogleMapsPlacesV1PriceRange.fromJson(
  1. Map json_
)

Implementation

GoogleMapsPlacesV1PriceRange.fromJson(core.Map json_)
  : this(
      endPrice: json_.containsKey('endPrice')
          ? GoogleTypeMoney.fromJson(
              json_['endPrice'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      startPrice: json_.containsKey('startPrice')
          ? GoogleTypeMoney.fromJson(
              json_['startPrice'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );