updateAuth abstract method

void updateAuth(
  1. String email,
  2. String password,
  3. T user
)

Updates the authentication session with the provided email, password, and user object T.

This method should be implemented to manage session updates when the user's credentials or details change.

Implementation

void updateAuth(String email, String password, T user);