CheckTextView constructor

CheckTextView({
  1. Key? key,
  2. required Widget centerWidget,
  3. Widget? centerWidgetChecked,
  4. Widget? drawableLeftChecked,
  5. Widget? drawableLeft,
  6. double? drawableLeftPadding = 0,
  7. Widget? drawableEndChecked,
  8. Widget? drawableEnd,
  9. double? drawableEndPadding = 0,
  10. Widget? drawableTopChecked,
  11. Widget? drawableTop,
  12. double? drawableTopPadding = 0,
  13. Widget? drawableBottomChecked,
  14. Widget? drawableBottom,
  15. double? drawableBottomPadding = 0,
  16. bool value = false,
  17. dynamic onChanged(
    1. bool
    )?,
})

Implementation

CheckTextView(
    {Key? key,
    required this.centerWidget,
    this.centerWidgetChecked,
    this.drawableLeftChecked,
    this.drawableLeft,
    this.drawableLeftPadding = 0,
    this.drawableEndChecked,
    this.drawableEnd,
    this.drawableEndPadding = 0,
    this.drawableTopChecked,
    this.drawableTop,
    this.drawableTopPadding = 0,
    this.drawableBottomChecked,
    this.drawableBottom,
    this.drawableBottomPadding = 0,
    this.value = false,
    this.onChanged})
    : super(key: key);