speechToText method

Future<STTResponse> speechToText(
  1. STTRequest request
)

Convert speech to text with full configuration support

Throws UnsupportedError if not supported. Check supportedFeatures first.

Implementation

Future<STTResponse> speechToText(STTRequest request) {
  throw UnsupportedError('Speech-to-text not supported by this provider');
}