userId property

  1. @override
String get userId
override

User ID extracted from authentication source

Implementation

@override
String get userId =>
    (_claims[JwtClaims.subject] ?? _claims[AuthClaims.userId] ?? '')
        as String;