stopScan method

  1. @override
Future<bool> stopScan()
override

Stop scanning for Bluetooth devices.

Implementation

@override
Future<bool> stopScan() async {
  //print('⏹️ Flutter: stopScan() called');
  _checkInitialization();
  return await methodChannel.invokeMethod('stopScan');
}