textToSpeech method

Future<TTSResponse> textToSpeech(
  1. TTSRequest request
)

Convert text to speech with full configuration support

Throws UnsupportedError if not supported. Check supportedFeatures first.

Implementation

Future<TTSResponse> textToSpeech(TTSRequest request) {
  throw UnsupportedError('Text-to-speech not supported by this provider');
}