startBleScan method
Starts scanning for nearby BLE devices.
Listen to streamBleScanResult for discovered devices. Requires necessary Bluetooth and Location permissions. Returns a Future that completes when the scan is initiated.
Implementation
@override
Future<void> startBleScan() async {
await methodChannel.invokeMethod('ble#startScan');
}