stopBluetoothScan function

Future<void> stopBluetoothScan()

Implementation

Future<void> stopBluetoothScan() async {
  if (Platform.isIOS) {
    return;
  }
  return await platform.invokeMethod('stopBluetoothScan');
}