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