GoogleCloudIntegrationsV1alphaListTestCasesResponse.fromJson constructor
GoogleCloudIntegrationsV1alphaListTestCasesResponse.fromJson(
- 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(),
);