TextFieldPinAutoFill constructor

const TextFieldPinAutoFill({
  1. Key? key,
  2. FocusNode? focusNode,
  3. bool obscureText = false,
  4. dynamic onCodeSubmitted(
    1. String
    )?,
  5. TextStyle? style,
  6. List<TextInputFormatter>? inputFormatters,
  7. dynamic onCodeChanged(
    1. String
    )?,
  8. InputDecoration decoration = const InputDecoration(),
  9. String? currentCode,
  10. bool autoFocus = false,
  11. bool enabled = true,
  12. int codeLength = 6,
  13. String? smsCodeRegexPattern,
})

Implementation

const TextFieldPinAutoFill(
    {Key? key,
    this.focusNode,
    this.obscureText = false,
    this.onCodeSubmitted,
    this.style,
    this.inputFormatters,
    this.onCodeChanged,
    this.decoration = const InputDecoration(),
    this.currentCode,
    this.autoFocus = false,
    this.enabled = true,
    this.codeLength = 6,
    this.smsCodeRegexPattern})
    : super(key: key);