GoogleCloudDialogflowV2ListConversationModelEvaluationsResponse.fromJson constructor

GoogleCloudDialogflowV2ListConversationModelEvaluationsResponse.fromJson(
  1. Map json_
)

Implementation

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