GoogleCloudDialogflowCxV3ListTestCaseResultsResponse.fromJson constructor

GoogleCloudDialogflowCxV3ListTestCaseResultsResponse.fromJson(
  1. Map json_
)

Implementation

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