GoogleCloudDialogflowV2ListConversationsResponse.fromJson constructor

GoogleCloudDialogflowV2ListConversationsResponse.fromJson(
  1. Map json_
)

Implementation

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