reset method

void reset()

Sign this provider out and erase its data with this function

Implementation

void reset() {
  _disposed = true;

  phoneNumber = null;
  verificationID = null;
  confirmationResult = null;
  otpState = OTPState.PHONE_INPUT;

  _disposed = false;
  logger.i("[OTPProvider] Should be signed out!");
}