FxCheckbox constructor

const FxCheckbox({
  1. required dynamic onChange(
    1. bool value
    ),
  2. required bool isChecked,
  3. Key? key,
  4. double? size,
  5. double? iconSize,
  6. Color? backgroundColor,
  7. Color? iconColor,
  8. IconData? icon,
  9. Color? borderColor,
})

Constructs a FxCheckbox.

Implementation

const FxCheckbox({
  required this.onChange,
  required this.isChecked,
  super.key,
  this.size,
  this.iconSize,
  this.backgroundColor,
  this.iconColor,
  this.icon,
  this.borderColor,
});