VNestedCheckboxTile constructor

const VNestedCheckboxTile({
  1. Key? key,
  2. required String label,
  3. required bool? value,
  4. required ValueChanged<bool> valueChanged,
  5. bool tristate = true,
  6. CheckboxType checkboxType = CheckboxType.child,
  7. VCheckboxStyle? style,
})

Implementation

const VNestedCheckboxTile({
  super.key,
  required this.label,
  required this.value,
  required this.valueChanged,
  this.tristate = true,
  this.checkboxType = CheckboxType.child,
  this.style,
});