isExpired property
bool
get
isExpired
Whether the token is expired.
Implementation
bool get isExpired =>
expiration != null &&
DateTime.now().isAfter(
expiration!,
);
Whether the token is expired.
bool get isExpired =>
expiration != null &&
DateTime.now().isAfter(
expiration!,
);