stopBleScan method

  1. @override
Future<void> stopBleScan()
override

Stops the ongoing BLE scan.

Returns a Future that completes when the scan is stopped.

Implementation

@override
Future<void> stopBleScan() async {
  await methodChannel.invokeMethod('ble#stopScan');
}