setLocale method
An implementation of LivespeechtotextPlatform.setLocale
Implementation
@override
Future<dynamic> setLocale(String languageTag) async {
final output = await methodChannel
.invokeMethod('setLocale', <String, dynamic>{'tag': languageTag});
return output;
}