getUserByEmail method
Looks up the user identified by the provided email and returns a future that is fulfilled with a user record for the given user if that user is found.
Implementation
Future<UserRecord> getUserByEmail(String email) async {
return await _authRequestHandler.getAccountInfoByEmail(email);
}