GoogleCloudChannelV1BillableSku.fromJson constructor
GoogleCloudChannelV1BillableSku.fromJson(
- Map json_
Implementation
GoogleCloudChannelV1BillableSku.fromJson(core.Map json_)
: this(
service: json_.containsKey('service')
? json_['service'] as core.String
: null,
serviceDisplayName: json_.containsKey('serviceDisplayName')
? json_['serviceDisplayName'] as core.String
: null,
sku: json_.containsKey('sku') ? json_['sku'] as core.String : null,
skuDisplayName: json_.containsKey('skuDisplayName')
? json_['skuDisplayName'] as core.String
: null,
);