VerificationBox constructor

VerificationBox({
  1. int count = 6,
  2. double itemWidget = 45,
  3. ValueChanged? onSubmitted,
  4. VerificationBoxItemType type = VerificationBoxItemType.box,
  5. Decoration? decoration,
  6. Decoration? focusDecoration,
  7. double borderWidth = 2.0,
  8. double borderRadius = 5.0,
  9. TextStyle? textStyle,
  10. Color? focusBorderColor,
  11. Color? borderColor,
  12. bool unfocus = true,
  13. bool autoFocus = true,
  14. bool showCursor = false,
  15. double cursorWidth = 2,
  16. Color? cursorColor,
  17. double cursorIndent = 10,
  18. double cursorEndIndent = 10,
})

Implementation

VerificationBox({
  this.count = 6,
  this.itemWidget = 45,
  this.onSubmitted,
  this.type = VerificationBoxItemType.box,
  this.decoration,
  this.focusDecoration,
  this.borderWidth = 2.0,
  this.borderRadius = 5.0,
  this.textStyle,
  this.focusBorderColor,
  this.borderColor,
  this.unfocus = true,
  this.autoFocus = true,
  this.showCursor = false,
  this.cursorWidth = 2,
  this.cursorColor,
  this.cursorIndent = 10,
  this.cursorEndIndent = 10,
});