GoogleCloudContactcenterinsightsV1ListConversationsResponse.fromJson constructor

GoogleCloudContactcenterinsightsV1ListConversationsResponse.fromJson(
  1. Map json_
)

Implementation

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