confirmEmailOtp abstract method
Submits an email OTP challenge — pass the emailId from the challenge
and the token the user entered. Returns true on success.
Implementation
Future<bool> confirmEmailOtp({
required String email,
required String emailId,
required String token,
});