GoogleCloudDialogflowCxV3BatchRunTestCasesRequest.fromJson constructor

GoogleCloudDialogflowCxV3BatchRunTestCasesRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3BatchRunTestCasesRequest.fromJson(core.Map json_)
    : this(
        environment: json_.containsKey('environment')
            ? json_['environment'] as core.String
            : null,
        testCases: json_.containsKey('testCases')
            ? (json_['testCases'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );