CheckBoxWidget constructor

CheckBoxWidget({
  1. Key? key,
  2. String title = "",
  3. bool isCheck = false,
  4. CallbackActionBool? callback,
})

Implementation

CheckBoxWidget(
    {Key? key, this.title = "", this.isCheck = false, this.callback})
    : super(key: key);