stop method

Future<bool?> stop()

Stop recognition.

Implementation

Future<bool?> stop() async {
  await _errorStreamSubscription?.cancel();
  return _channel.invokeMethod<bool>('speechService.stop');
}