OudsPinCodeInput constructor

OudsPinCodeInput({
  1. Key? key,
  2. OudsPinCodeInputLength length = OudsPinCodeInputLength.six,
  3. String? helperText,
  4. String? errorText,
  5. List<TextEditingController>? controllers,
  6. void onEditingComplete(
    1. String
    )?,
  7. void onChanged(
    1. String
    )?,
  8. required OudsDigitInputDecoration digitInputDecoration,
})

Implementation

OudsPinCodeInput({
  super.key,
  this.length = OudsPinCodeInputLength.six,
  this.helperText,
  this.errorText,
  this.controllers,
  this.onEditingComplete,
  this.onChanged,
  required this.digitInputDecoration,
});