CustomOtpView constructor

const CustomOtpView({
  1. Key? key,
  2. required TextEditingController otpController,
  3. required bool autoFocus,
  4. bool isFirst = false,
  5. bool isLast = false,
})

Implementation

const CustomOtpView(
    {super.key, required this.otpController,
      required this.autoFocus,
      this.isFirst = false,
      this.isLast = false});