LanguageDetectorResult constructor

LanguageDetectorResult({
  1. required Iterable<LanguagePrediction> predictions,
})

Container with results of MediaPipe's language detection task.

See also:

Implementation

LanguageDetectorResult({
  required Iterable<LanguagePrediction> predictions,
})  : _predictions = predictions,
      _pointer = null;