AuthResolvedJwtSession constructor
const
AuthResolvedJwtSession({
- required String token,
- required AuthUser user,
- required DateTime? expiresAt,
- required JwtPayload payload,
- Cookie? refreshCookie,
Creates a resolved session result.
Implementation
const AuthResolvedJwtSession({
required this.token,
required this.user,
required this.expiresAt,
required this.payload,
this.refreshCookie,
});