storeId property
      
      String?
      get
      storeId
      
    
    
The ID of the cookie store in which to set the cookie. By default, the cookie is set in the current execution context's cookie store.
Implementation
String? get storeId => _wrapped.storeId;
      
      set
      storeId
      (String? v) 
      
    
    
    
Implementation
set storeId(String? v) {
  _wrapped.storeId = v;
}