getPronunciationUrl method
Implementation
Future<Uri> getPronunciationUrl(
String sourceText, {
String from = autoLanguage,
required String to,
}) async =>
Uri.https(
serverHost,
_pronounceUrlPath,
await _getParameters(sourceText, from, to: to),
);