stopDiscovery method

  1. @override
Future<bool?> stopDiscovery()
override

Implementation

@override
Future<bool?> stopDiscovery() async {
  final stopped = await methodChannel.invokeMethod<bool?>("stopDiscovery");
  return stopped;
}