httpOnly property

bool get httpOnly

True if the cookie is marked as HttpOnly (i.e. the cookie is inaccessible to client-side scripts).

Implementation

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

Implementation

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