GoogleCloudDialogflowV2ListGeneratorEvaluationsResponse.fromJson constructor

GoogleCloudDialogflowV2ListGeneratorEvaluationsResponse.fromJson(
  1. Map json_
)

Implementation

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