scanFilter property

bool Function(BluetoothDevice device) scanFilter

Implementation

bool Function(BluetoothDevice device) get scanFilter => module.ble.scanFilter;
void scanFilter=(bool scanFilter(BluetoothDevice device))

/////

Implementation

set scanFilter(bool Function(BluetoothDevice device) scanFilter) {
  module.ble.scanFilter = scanFilter;
}