QudsCheckbox constructor
const
QudsCheckbox({})
value
the check state of this checkbox
checkColor
the color of the widget when its value set to true
unCheckColor
the color of the widget when its value set to false
onChanged
called when the check state is changed.
tooltip
a short message shown when the user hold a tap over the checkbox
size
the size of the ckeck icon
Implementation
const QudsCheckbox(
{Key? key,
required this.value,
this.checkColor,
this.unCkeckColor,
this.onChanged,
this.tooltip,
this.textDirection,
this.size})
: super(key: key);