httpOnly property
bool?
get
httpOnly
Whether the cookie should be marked as HttpOnly. Defaults to false.
Implementation
bool? get httpOnly => _wrapped.httpOnly;
set
httpOnly
(bool? v)
Implementation
set httpOnly(bool? v) {
_wrapped.httpOnly = v;
}