stopScan method

Future stopScan()

Stops a scan for Bluetooth Low Energy devices

Implementation

Future stopScan() async {
  await _channel.invokeMethod('stopScan');
  _stopScanPill.add(null);
  _isScanning.add(false);
}