VerifyPhoneOtp constructor
const
VerifyPhoneOtp({
- Key? key,
- required String phoneNo,
- required String otp,
- required Widget loader,
- required Function generateOtpFunc,
- required dynamic client,
- required Function retrySendOtpEndpoint,
- required dynamic appWrapperContext,
- Function? successCallBack,
- Function? changeNumberCallback,
- Client? httpClient,
- Function? retryOTPCallback,
- 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);