url property
      
      String?
      get
      url
      
    
    
The URL to initially navigate the tab to. Fully-qualified URLs must include a scheme (i.e., 'http://www.google.cn', not 'www.google.com'). Relative URLs are relative to the current page within the extension. Defaults to the New Tab Page.
Implementation
String? get url => _wrapped.url;
      
      set
      url
      (String? v) 
      
    
    
    
Implementation
set url(String? v) {
  _wrapped.url = v;
}