FCheckbox constructor

const FCheckbox({
  1. Key? key,
  2. FColorI? fColor,
  3. Duration? animationDuration,
  4. double? width,
  5. double? height,
  6. void onChanged(
    1. bool value
    )?,
  7. bool isChecked = false,
  8. bool enabled = true,
  9. FColorI? fDisabledColor,
})

Implementation

const FCheckbox({
  Key? key,
  this.fColor,
  this.animationDuration,
  this.width,
  this.height,
  this.onChanged,
  this.isChecked = false,
  this.enabled = true,
  this.fDisabledColor,
}) : super(key: key);