CheckboxItem constructor

CheckboxItem({
  1. required String text,
  2. List<CheckboxItem> children = const [],
  3. bool value = false,
  4. bool? isIndeterminate = false,
  5. bool disabled = false,
})

Implementation

CheckboxItem({
  required this.text,
  this.children = const [],
  this.value = false,
  this.isIndeterminate = false,
  this.disabled = false,
});