local property
      
      bool?
      get
      local
      
    
    
Only return scanners that are directly attached to the computer.
Implementation
bool? get local => _wrapped.local;
      
      set
      local
      (bool? v) 
      
    
    
    
Implementation
set local(bool? v) {
  _wrapped.local = v;
}