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