GoogleCloudDialogflowV2ListConversationModelsResponse.fromJson constructor

GoogleCloudDialogflowV2ListConversationModelsResponse.fromJson(
  1. Map json_
)

Implementation

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