stopScanBlueToothDevice method Null safety
override
停止扫描蓝牙设备
Implementation
@override
Future<void> stopScanBlueToothDevice() async {
if (_scanBluetoothDeviceStreamController?.isClosed == false) {
return methodChannel
.invokeMethod(PluginConstants.methodStopScanBluetoothDevice);
}
}