GNCheckbox constructor

const GNCheckbox({
  1. Key? key,
  2. required bool value,
  3. required void onChanged(
    1. bool? value
    )?,
  4. Color? checkColor,
  5. Color? activeColor,
  6. Color? borderColor,
  7. double? scale,
  8. EdgeInsets? padding,
})

Implementation

const GNCheckbox({
  super.key,
  required this.value,
  required this.onChanged,
  this.checkColor,
  this.activeColor,
  this.borderColor,
  this.scale,
  this.padding,
});