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