KiteOtpInput constructor

const KiteOtpInput({
  1. required ValueChanged<String> onChanged,
  2. Key? key,
  3. int length = 6,
  4. ValueChanged<String>? onCompleted,
  5. bool autofocus = true,
})

Implementation

const KiteOtpInput({
  required this.onChanged,
  super.key,
  this.length = 6,
  this.onCompleted,
  this.autofocus = true,
});