CircularCheckbox constructor

const CircularCheckbox({
  1. Key? key,
  2. required bool value,
  3. Color? checkColor,
  4. Color? activeColor,
  5. required ValueChanged<bool>? onChanged,
})

Implementation

const CircularCheckbox({
  Key? key,
  required this.value,
  this.checkColor,
  this.activeColor,
  required this.onChanged,
}) : super(key: key);