GoogleCloudChannelV1PriceTier.fromJson constructor
GoogleCloudChannelV1PriceTier.fromJson(
- Map json_
Implementation
GoogleCloudChannelV1PriceTier.fromJson(core.Map json_)
: this(
firstResource: json_['firstResource'] as core.int?,
lastResource: json_['lastResource'] as core.int?,
price:
json_.containsKey('price')
? GoogleCloudChannelV1Price.fromJson(
json_['price'] as core.Map<core.String, core.dynamic>,
)
: null,
);