stopListening method

Future<bool?> stopListening()

Implementation

Future<bool?> stopListening() async {
  bool? result = await _channel.invokeMethod('stopListening');
  return result;
}