claims property

Map<String, dynamic>? get claims

The entire payload claims of the ID token including the standard reserved claims as well as the custom claims.

Implementation

Map<String, dynamic>? get claims =>
    Map<String, dynamic>.from(_decodedToken.claims);