stopSpeechListenService property

Future<String?> stopSpeechListenService

Implementation

Future<String?> get stopSpeechListenService async {
  _stopSpeechListener();
  final String? result = await _channel.invokeMethod('stopService');
  print('[$_tag] Received: $result');
  return result;
}