updatePasswordWithEmail method

Future<void> updatePasswordWithEmail({
  1. required ReachFiveKeyInterface reachFiveKey,
  2. required String email,
  3. required String verificationCode,
  4. required String newPassword,
})
inherited

Implementation

Future<void> updatePasswordWithEmail({
  required ReachFiveKeyInterface reachFiveKey,
  required String email,
  required String verificationCode,
  required String newPassword,
}) =>
    reachFiveHostApi.updatePasswordWithEmail(
      UpdatePasswordWithEmailRequestInterface(
        reachFiveKey: reachFiveKey,
        email: email,
        verificationCode: verificationCode,
        password: newPassword,
        errorCodes: errorCodesInterface,
      ),
    );