login abstract method

Future<RequestResponse<K>> login(
  1. String email, [
  2. String? password
])

Logs in the user (if successful) using email & password.

Returns the SessionStatusInfo whether successful or not, wrapped within RequestResponse.

password is optional.

Implementation

Future<RequestResponse<K>> login(String email, [String? password]);