enableWordConfidence property

  1. @TagNumber(3)
bool enableWordConfidence

If true, the top result includes a list of words and the confidence for those words. If false, no word-level confidence information is returned. The default is false.

Implementation

@$pb.TagNumber(3)
$core.bool get enableWordConfidence => $_getBF(2);
  1. @TagNumber(3)
void enableWordConfidence=(bool v)

Implementation

@$pb.TagNumber(3)
set enableWordConfidence($core.bool v) {
  $_setBool(2, v);
}