secure property

bool? get secure

Only return scanners that use a secure transport, such as USB or TLS.

Implementation

bool? get secure => _wrapped.secure;
set secure (bool? v)

Implementation

set secure(bool? v) {
  _wrapped.secure = v;
}