session property
bool
get
session
True if the cookie is a session cookie, as opposed to a persistent cookie with an expiration date.
Implementation
bool get session => _wrapped.session;
set
session
(bool v)
Implementation
set session(bool v) {
_wrapped.session = v;
}