AuthResolvedJwtSession constructor

const AuthResolvedJwtSession({
  1. required String token,
  2. required AuthUser user,
  3. required DateTime? expiresAt,
  4. required JwtPayload payload,
  5. Cookie? refreshCookie,
})

Creates a resolved session result.

Implementation

const AuthResolvedJwtSession({
  required this.token,
  required this.user,
  required this.expiresAt,
  required this.payload,
  this.refreshCookie,
});