secure property
bool
get
secure
If true, the scanner connection's transport cannot be intercepted by a passive listener, such as TLS or USB.
Implementation
bool get secure => _wrapped.secure;
set
secure
(bool v)
Implementation
set secure(bool v) {
_wrapped.secure = v;
}