SpeechToTextSettings constructor

SpeechToTextSettings({
  1. bool? enableSpeechAdaptation,
})

Implementation

factory SpeechToTextSettings({
  $core.bool? enableSpeechAdaptation,
}) {
  final _result = create();
  if (enableSpeechAdaptation != null) {
    _result.enableSpeechAdaptation = enableSpeechAdaptation;
  }
  return _result;
}