QuillEditorCheckboxPoint constructor

const QuillEditorCheckboxPoint({
  1. required double size,
  2. required bool value,
  3. required bool enabled,
  4. required ValueChanged<bool> onChanged,
  5. QuillCheckboxBuilder? uiBuilder,
  6. Key? key,
})

Implementation

const QuillEditorCheckboxPoint({
  required this.size,
  required this.value,
  required this.enabled,
  required this.onChanged,
  this.uiBuilder,
  super.key,
});