signUpWithEmailHandler method
override
Implementation
@override
Future<void> signUpWithEmailHandler(String email, String pwd) async {
UserCredential res = await authProvider.createUserWithEmailAndPassword(
email: email, password: pwd);
if (res.user == null) {
throw 'whoops failed';
}
}