GoogleCloudIntegrationsV1alphaExecuteTestCasesResponse.fromJson constructor

GoogleCloudIntegrationsV1alphaExecuteTestCasesResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaExecuteTestCasesResponse.fromJson(
  core.Map json_,
) : this(
      executeTestCaseResponses: (json_['executeTestCaseResponses'] as core.List?)
          ?.map(
            (value) =>
                GoogleCloudIntegrationsV1alphaExecuteTestCaseResponse.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
    );