GoogleCloudContactcenterinsightsV1TestCorrelationConfigRequestConversations.fromJson constructor

GoogleCloudContactcenterinsightsV1TestCorrelationConfigRequestConversations.fromJson(
  1. Map json_
)

Implementation

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