getClaim<T> method

T? getClaim<T>(
  1. String key
)

Get a specific claim value by key

Implementation

T? getClaim<T>(String key) => _rawClaims[key] as T?;