populate property
      
      bool?
      get
      populate
      
    
    
If true, the windows.Window object has a tabs property that contains a
list of the tabs.Tab objects. The Tab objects only contain the url,
pendingUrl, title, and favIconUrl properties if the extension's
manifest file includes the "tabs" permission.
Implementation
bool? get populate => _wrapped.populate;
      
      set
      populate
      (bool? v) 
      
    
    
    
Implementation
set populate(bool? v) {
  _wrapped.populate = v;
}