interactive property
      
      bool
      get
      interactive
      
    
    
If true, the filtered list is presented to the user to manually select a certificate and thereby granting the extension access to the certificate(s) and key(s). Only the selected certificate(s) will be returned. If is false, the list is reduced to all certificates that the extension has been granted access to (automatically or manually).
Implementation
bool get interactive => _wrapped.interactive;
      
      set
      interactive
      (bool v) 
      
    
    
    
Implementation
set interactive(bool v) {
  _wrapped.interactive = v;
}