VerificationBox constructor

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

Implementation

VerificationBox(
    {this.count = 6,
    this.itemWidget = 45,
    this.onSubmitted,
    this.type = VerificationBoxItemType.box,
    this.decoration,
    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});