scanBleDevices method

Future<List<String>> scanBleDevices(
  1. String prefix
)
inherited

Initiates a scan of BLE devices with the given prefix.

ESP32 Arduino demo defaults this value to "PROV_"

Implementation

Future<List<String>> scanBleDevices(String prefix) {
  return FlutterEspBleProvPlatform.instance.scanBleDevices(prefix);
}