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