GoogleCloudDialogflowV2ListConversationModelsResponse.fromJson constructor

GoogleCloudDialogflowV2ListConversationModelsResponse.fromJson(
  1. Map json_
)

Implementation

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