VerificationBoxItem constructor

VerificationBoxItem({
  1. String data = '',
  2. TextStyle? textStyle,
  3. VerificationBoxItemType type = VerificationBoxItemType.box,
  4. Decoration? decoration,
  5. double borderRadius = 5.0,
  6. double borderWidth = 2.0,
  7. Color? borderColor,
  8. bool showCursor = false,
  9. Color? cursorColor,
  10. double cursorWidth = 2,
  11. double cursorIndent = 5,
  12. double cursorEndIndent = 5,
})

Implementation

VerificationBoxItem(
    {this.data = '',
    this.textStyle,
    this.type = VerificationBoxItemType.box,
    this.decoration,
    this.borderRadius = 5.0,
    this.borderWidth = 2.0,
    this.borderColor,
    this.showCursor = false,
    this.cursorColor,
    this.cursorWidth = 2,
    this.cursorIndent = 5,
    this.cursorEndIndent = 5});