stop method

  1. @override
Future<String?> stop()
override

An implementation of LivespeechtotextPlatform.stop

Implementation

@override
Future<String?> stop() async {
  final output = await methodChannel.invokeMethod('stop');
  return output;
}