expirationDate property
double?
get
expirationDate
The expiration date of the cookie as the number of seconds since the UNIX epoch. If omitted, the cookie becomes a session cookie.
Implementation
double? get expirationDate => _wrapped.expirationDate;
set
expirationDate
(double? v)
Implementation
set expirationDate(double? v) {
_wrapped.expirationDate = v;
}