stopDiscovery method

Future<void> stopDiscovery()

Stop Discovery

This doesn't disconnect from already connected Endpoint

It is reccomended to call this method once you have connected to an endPoint as discovery uses heavy radio operations which may affect connection speed and integrity

Implementation

Future<void> stopDiscovery() async {
  await _channel.invokeMethod('stopDiscovery');
}