GoogleMapsPlacesV1FuelOptionsFuelPrice.fromJson constructor
GoogleMapsPlacesV1FuelOptionsFuelPrice.fromJson(
- Map json_
Implementation
GoogleMapsPlacesV1FuelOptionsFuelPrice.fromJson(core.Map json_)
: this(
price: json_.containsKey('price')
? GoogleTypeMoney.fromJson(
json_['price'] as core.Map<core.String, core.dynamic>)
: null,
type: json_.containsKey('type') ? json_['type'] as core.String : null,
updateTime: json_.containsKey('updateTime')
? json_['updateTime'] as core.String
: null,
);