GiantToadEditorCheckbox constructor

const GiantToadEditorCheckbox({
  1. required bool? value,
  2. required ValueChanged<bool?>? onChanged,
  3. bool tristate = false,
  4. Key? key,
})

Implementation

const GiantToadEditorCheckbox({
  required this.value,
  required this.onChanged,
  this.tristate = false,
  super.key,
});