CheckboxButton constructor

CheckboxButton({
  1. @required Color? color,
  2. bool? radioValue = false,
  3. bool? enabled = false,
  4. void onchanged(
    1. bool?
    )?,
  5. bool? value = false,
})

Implementation

CheckboxButton({
  @required this.color,
  this.radioValue = false,
  this.enabled = false,
   this.onchanged,
  this.value = false,
});