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