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