GoogleCloudIntegrationsV1alphaDownloadIntegrationVersionResponse.fromJson constructor

GoogleCloudIntegrationsV1alphaDownloadIntegrationVersionResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaDownloadIntegrationVersionResponse.fromJson(
  core.Map json_,
) : this(
      content: json_['content'] as core.String?,
      files: (json_['files'] as core.List?)
          ?.map(
            (value) => GoogleCloudIntegrationsV1alphaSerializedFile.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
    );