OTPView constructor
const
OTPView({
- Key? key,
- int otpCount = 6,
- TextEditingController? controller,
- dynamic onSubmit(
- String otp
- required OTPStyle style,
Implementation
const OTPView({
super.key,
this.otpCount = 6,
this.controller,
this.onSubmit,
required this.style,
});