RecognitionConfigV2 constructor

RecognitionConfigV2({
  1. RecognitionFeatures? features,
  2. SpeechAdaptation? adaptation,
  3. AutoDetectDecodingConfig? autoDecodingConfig,
  4. ExplicitDecodingConfig? explicitDecodingConfig,
  5. RecognitionModelV2? model,
  6. Iterable<String>? languageCodes,
})

Provides information to the recognizer that specifies how to process the request.

Implementation

RecognitionConfigV2({
  this.features,
  this.adaptation,
  this.autoDecodingConfig,
  this.explicitDecodingConfig,
  this.model,
  this.languageCodes,
});