stopLiveTranscription method

  1. @override
Future<String> stopLiveTranscription()
override

Implementation

@override
Future<String> stopLiveTranscription() async {
  return await methodChannel
      .invokeMethod<String>('stopLiveTranscription')
      .then<String>((String? value) => value ?? "");
}