getUserByEmail abstract method

Future<User?> getUserByEmail(
  1. String email
)

Get a User by email.

Each user is uniquely identified by an email.

Parameters:

  • String email (required): The email that identifies the user uniquely

Implementation

Future<User?> getUserByEmail(String email);