GoogleCloudDialogflowCxV3ListTestCaseResultsResponse.fromJson constructor

GoogleCloudDialogflowCxV3ListTestCaseResultsResponse.fromJson(
  1. Map json_
)

Implementation

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