expiration property

int? get expiration

Expiration: the time on or after which the token must not be accepted (key 4, Unix timestamp in seconds).

Implementation

int? get expiration => _map[4] as int?;
set expiration (int? value)

Implementation

set expiration(int? value) => _set(4, value);