tryDecode method
Tries to decodes the token into a Map of claims, returns null if decoding fails.
Implementation
@override
Map<String, dynamic>? tryDecode(String token) {
try {
return JwtDecoder.tryDecode(token);
} catch (_) {
return null;
}
}