CheckTextView constructor
CheckTextView({
- Key? key,
- required Widget centerWidget,
- Widget? centerWidgetChecked,
- Widget? drawableLeftChecked,
- Widget? drawableLeft,
- double? drawableLeftPadding = 0,
- Widget? drawableEndChecked,
- Widget? drawableEnd,
- double? drawableEndPadding = 0,
- Widget? drawableTopChecked,
- Widget? drawableTop,
- double? drawableTopPadding = 0,
- Widget? drawableBottomChecked,
- Widget? drawableBottom,
- double? drawableBottomPadding = 0,
- bool value = false,
- dynamic onChanged()?,
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);