secure property

bool get secure

True if the cookie is marked as Secure (i.e. its scope is limited to secure channels, typically HTTPS).

Implementation

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

Implementation

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