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