GoogleCloudChannelV1ListTransferableSkusResponse.fromJson constructor
GoogleCloudChannelV1ListTransferableSkusResponse.fromJson(
- Map json_
Implementation
GoogleCloudChannelV1ListTransferableSkusResponse.fromJson(core.Map json_)
: this(
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
transferableSkus: json_.containsKey('transferableSkus')
? (json_['transferableSkus'] as core.List)
.map((value) => GoogleCloudChannelV1TransferableSku.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);