GoogleCloudIntegrationsV1alphaListTestCasesResponse.fromJson constructor

GoogleCloudIntegrationsV1alphaListTestCasesResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaListTestCasesResponse.fromJson(core.Map json_)
    : this(
        nextPageToken: json_['nextPageToken'] as core.String?,
        testCases: (json_['testCases'] as core.List?)
            ?.map((value) => GoogleCloudIntegrationsV1alphaTestCase.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
      );