hostOnly property

bool get hostOnly

True if the cookie is a host-only cookie (i.e. a request's host must exactly match the domain of the cookie).

Implementation

bool get hostOnly => _wrapped.hostOnly;
set hostOnly (bool v)

Implementation

set hostOnly(bool v) {
  _wrapped.hostOnly = v;
}