MenuCheckbox constructor

const MenuCheckbox({
  1. Key? key,
  2. bool value = false,
  3. ContextedValueChanged<bool>? onChanged,
  4. required Widget child,
  5. Widget? trailing,
  6. FocusNode? focusNode,
  7. bool enabled = true,
  8. bool autoClose = true,
})

Implementation

const MenuCheckbox({
  super.key,
  this.value = false,
  this.onChanged,
  required this.child,
  this.trailing,
  this.focusNode,
  this.enabled = true,
  this.autoClose = true,
});