getClaim method

  1. @override
String? getClaim(
  1. String jwtClaim
)

Gets the value of a JWT claim named jwtClaim associated with the current authentication session, or null if not found/unauthenticated.

Implementation

@override
String? getClaim(String jwtClaim) => _session.getClaim(jwtClaim);