claims property

Map<String, dynamic>? 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 =>
    _data.claims == null ? null : Map<String, dynamic>.from(_data.claims!);