DeviceFilter constructor
Implementation
DeviceFilter({
/// Only return scanners that are directly attached to the computer.
bool? local,
/// Only return scanners that use a secure transport, such as USB or TLS.
bool? secure,
}) : _wrapped = $js.DeviceFilter(
local: local,
secure: secure,
);