attempt method

  1. @override
Future<AuthResponse> attempt(
  1. Map<String, dynamic> credentials
)
override

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);
}