requestLEScan method

JSPromise<BluetoothLEScan> requestLEScan(
  1. BluetoothLEScanOptions options
)

Request the user to start scanning for Bluetooth LE devices in the area.

See BluetoothLEScanOptions for the options available.

https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetooth-requestlescan

Implementation

JSPromise<BluetoothLEScan> requestLEScan(
        final BluetoothLEScanOptions options) =>
    _nativeBluetoothInstance.requestLEScan(options);