setLocale method

  1. @override
Future setLocale(
  1. String languageTag
)
override

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;
}