OTPBox constructor

const OTPBox({
  1. Key? key,
  2. String testKey = '',
  3. bool autoFocus = false,
  4. TextEditingController? textEditingController,
  5. Color? borderColor,
})

Implementation

const OTPBox({
  Key? key,
  this.testKey = '',
  this.autoFocus = false,
  this.textEditingController,
  this.borderColor,
}) : super(key: key);