GoogleCloudRecommendationengineV1beta1ProductCatalogItemPriceRange.fromJson constructor
GoogleCloudRecommendationengineV1beta1ProductCatalogItemPriceRange.fromJson(
- Map _json
Implementation
GoogleCloudRecommendationengineV1beta1ProductCatalogItemPriceRange.fromJson(
core.Map _json)
: this(
max: _json.containsKey('max')
? (_json['max'] as core.num).toDouble()
: null,
min: _json.containsKey('min')
? (_json['min'] as core.num).toDouble()
: null,
);