GoogleCloudIntegrationsV1alphaUploadTestCaseResponse.fromJson constructor

GoogleCloudIntegrationsV1alphaUploadTestCaseResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaUploadTestCaseResponse.fromJson(core.Map json_)
  : this(
      testCase:
          json_.containsKey('testCase')
              ? GoogleCloudIntegrationsV1alphaTestCase.fromJson(
                json_['testCase'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );