filters property

List<DeviceFilter>? get filters

Filter the list of devices presented to the user. If multiple filters are provided devices matching any filter will be displayed.

Implementation

List<DeviceFilter>? get filters => _wrapped.filters?.toDart
    .cast<$js.DeviceFilter>()
    .map((e) => DeviceFilter.fromJS(e))
    .toList();
set filters (List<DeviceFilter>? v)

Implementation

set filters(List<DeviceFilter>? v) {
  _wrapped.filters = v?.toJSArray((e) => e.toJS);
}