secure property
bool?
get
secure
Filters the cookies by their Secure property.
Implementation
bool? get secure => _wrapped.secure;
set
secure
(bool? v)
Implementation
set secure(bool? v) {
_wrapped.secure = v;
}