getLiveTranscriptionStatus method
Get the current live transcription status to see if it has started or stopped.
The default status is stop, and it will be changed to start when the startLiveTranscription method is called successfully.
Return the current live transcription status.
Implementation
@override
Future<String> getLiveTranscriptionStatus() async {
return await methodChannel
.invokeMethod<String>('getLiveTranscriptionStatus')
.then<String>((String? value) => value ?? "");
}