keepRepeatedDevices property
bool
get
keepRepeatedDevices
If this Bluetooth LE scan should keep repeated devices or just discard them.
See BluetoothLEScanOptions.keepRepeatedDevices
https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescan-keeprepeateddevices
Implementation
bool get keepRepeatedDevices {
var keep = _keepRepeatedDevices;
if (keep != null) {
return keep;
}
keep =
_JSUtil.getProperty(_jsObject, "keepRepeatedDevices") as bool? ?? false;
_keepRepeatedDevices = keep;
return keep;
}