attempt method
Authenticates via session (web-specific)
In web applications, this authenticates credentials but does not automatically store in session. Use loginWithSessionId for that.
Implementation
@override
Future<AuthResponse> attempt(Map<String, dynamic> credentials) async {
// Use parent authentication logic
return super.attempt(credentials);
}