ZCheckBox constructor

const ZCheckBox({
  1. Key? key,
  2. required Function onChanged,
  3. required bool initialSelected,
  4. required Image asset,
  5. bool? disabled,
  6. double? height,
  7. double? width,
  8. Color? backgroundColor,
  9. Color? borderColor,
  10. double? boxRadius,
})

Implementation

const ZCheckBox({Key? key,
  required this.onChanged,
  required this.initialSelected,
  required this.asset,
  this.disabled,
  this.height,
  this.width,
  this.backgroundColor,
  this.borderColor,
  this.boxRadius})
    : super(key: key);