willExpired method
Whether the token will expired within the given duration.
Throws FormatException if the payload is invalid.
Implementation
bool willExpired(Duration duration) {
if (expirationDate == null) return false;
return DateTime.now().isAfter(expirationDate!.add(duration));
}