GoogleCloudContactcenterinsightsV1AnnotationBoundary.fromJson constructor

GoogleCloudContactcenterinsightsV1AnnotationBoundary.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContactcenterinsightsV1AnnotationBoundary.fromJson(core.Map json_)
    : this(
        transcriptIndex: json_.containsKey('transcriptIndex')
            ? json_['transcriptIndex'] as core.int
            : null,
        wordIndex: json_.containsKey('wordIndex')
            ? json_['wordIndex'] as core.int
            : null,
      );