confirmEmailOtp abstract method

Future<bool> confirmEmailOtp({
  1. required String email,
  2. required String emailId,
  3. required String token,
})

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,
});