VerifyPhoneOtp constructor

const VerifyPhoneOtp({
  1. Key? key,
  2. required String phoneNo,
  3. required String otp,
  4. required Widget loader,
  5. required Function generateOtpFunc,
  6. required dynamic client,
  7. required Function retrySendOtpEndpoint,
  8. required dynamic appWrapperContext,
  9. Function? successCallBack,
  10. Function? changeNumberCallback,
  11. Client? httpClient,
  12. Function? retryOTPCallback,
  13. Function? onDoneOTPCallback,
})

Implementation

const VerifyPhoneOtp({
  Key? key,
  required this.phoneNo,
  required this.otp,
  required this.loader,
  required this.generateOtpFunc,
  required this.client,
  required this.retrySendOtpEndpoint,
  required this.appWrapperContext,
  this.successCallBack,
  this.changeNumberCallback,
  this.httpClient,
  this.retryOTPCallback,
  this.onDoneOTPCallback,
}) : super(key: key);