LeadingConfig constructor

LeadingConfig({
  1. required Attribute attribute,
  2. required Map<int, int> indentLevelCounts,
  3. required int count,
  4. required TextStyle? style,
  5. required double? width,
  6. required double? padding,
  7. required bool value,
  8. required void onCheckboxTap(
    1. bool
    ),
  9. required Map<String, Attribute> attrs,
  10. bool withDot = true,
  11. int? index,
  12. double? lineSize,
  13. bool? enabled,
  14. QuillCheckboxBuilder? uiBuilder,
})

Implementation

LeadingConfig({
  required this.attribute,
  required this.indentLevelCounts,
  required this.count,
  required this.style,
  required this.width,
  required this.padding,
  required this.value,
  required this.onCheckboxTap,
  required this.attrs,
  this.withDot = true,
  this.index,
  this.lineSize,
  this.enabled,
  this.uiBuilder,
});