PinFieldAutoFill constructor

const PinFieldAutoFill({
  1. Key? key,
  2. TextInputType keyboardType = const TextInputType.numberWithOptions(),
  3. TextInputAction textInputAction = TextInputAction.done,
  4. FocusNode? focusNode,
  5. Cursor? cursor,
  6. List<TextInputFormatter>? inputFormatters,
  7. bool enableInteractiveSelection = true,
  8. bool enabled = true,
  9. TextEditingController? controller,
  10. PinDecoration? decoration,
  11. dynamic onCodeSubmitted(
    1. String
    )?,
  12. dynamic onCodeChanged(
    1. String?
    )?,
  13. String? currentCode,
  14. bool autoFocus = false,
  15. int codeLength = 6,
  16. String? smsCodeRegexPattern,
})

Implementation

const PinFieldAutoFill(
    {Key? key,
    this.keyboardType = const TextInputType.numberWithOptions(),
    this.textInputAction = TextInputAction.done,
    this.focusNode,
    this.cursor,
    this.inputFormatters,
    this.enableInteractiveSelection = true,
    this.enabled = true,
    this.controller,
    this.decoration,
    this.onCodeSubmitted,
    this.onCodeChanged,
    this.currentCode,
    this.autoFocus = false,
    this.codeLength = 6,
    this.smsCodeRegexPattern})
    : super(key: key);