GoogleCloudContactcenterinsightsV1ConversationTranscript.fromJson constructor

GoogleCloudContactcenterinsightsV1ConversationTranscript.fromJson(
  1. Map json_
)

Implementation

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