GoogleCloudDialogflowV2ListConversationModelEvaluationsResponse.fromJson constructor

GoogleCloudDialogflowV2ListConversationModelEvaluationsResponse.fromJson(
  1. Map json_
)

Implementation

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