DDSNestedCheckbox constructor

const DDSNestedCheckbox({
  1. Key? key,
  2. required CheckboxItem item,
  3. CheckboxShape shape = CheckboxShape.roundedRectangle,
  4. Color? checkboxColor = ThemeColors.primary,
  5. double? checkboxScale = 1.0,
  6. double indentationWidth = 32.0,
  7. void onChanged(
    1. CheckboxItem item
    )?,
})

Implementation

const DDSNestedCheckbox({
  Key? key,
  required this.item,
  this.shape = CheckboxShape.roundedRectangle,
  this.checkboxColor = ThemeColors.primary,
  this.checkboxScale = 1.0,
  this.indentationWidth = 32.0,
  this.onChanged,
}) : super(key: key);