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