stopScan method

Future<void> stopScan()

Implementation

Future<void> stopScan() async {
  try {
    await ble.FlutterBluePlus.stopScan();
  } catch (e) {
    throw Exception("Stop Scan Error: $e");
  }
}