CustomOptBox constructor

const CustomOptBox({
  1. Key? key,
  2. required int size,
  3. required List<String> otpList,
  4. required dynamic onOtpFilled(
    1. List<String>
    ),
})

Implementation

const CustomOptBox({
  Key? key,
  required this.size,
  required this.otpList,
  required this.onOtpFilled,
}) : super(key: key);