stopListener static method

Future<bool?> stopListener()

Implementation

static Future<bool?> stopListener() async {
  final bool? isSet =
      await _channel.invokeMethod('stopListener', <String, dynamic>{});
  return isSet;
}