notBefore property
int?
get
notBefore
NotBefore: the time before which the token must not be accepted (key 5, Unix timestamp in seconds).
Implementation
int? get notBefore => _map[5] as int?;
set
notBefore
(int? value)
Implementation
set notBefore(int? value) => _set(5, value);