domain property
      
      String?
      get
      domain
      
    
    
The domain of the cookie. If omitted, the cookie becomes a host-only cookie.
Implementation
String? get domain => _wrapped.domain;
      
      set
      domain
      (String? v) 
      
    
    
    
Implementation
set domain(String? v) {
  _wrapped.domain = v;
}