issuedAt property

int? get issuedAt

IssuedAt: the time at which the token was issued (key 6, Unix timestamp in seconds).

Implementation

int? get issuedAt => _map[6] as int?;
set issuedAt (int? value)

Implementation

set issuedAt(int? value) => _set(6, value);