LiveCheckedPopupMenuItem<T> constructor

const LiveCheckedPopupMenuItem<T>({
  1. Key? key,
  2. MetaCell<void>? tap,
  3. MutableCell<T?>? value,
  4. bool checked = false,
  5. bool enabled = true,
  6. EdgeInsets? padding,
  7. double height = kMinInteractiveDimension,
  8. WidgetStateProperty<TextStyle?>? labelTextStyle,
  9. MouseCursor? mouseCursor,
  10. Widget? child,
})

Implementation

const LiveCheckedPopupMenuItem({
  super.key,
  this.tap,
  this.value,
  this.checked = false,
  this.enabled = true,
  this.padding,
  this.height = kMinInteractiveDimension,
  this.labelTextStyle,
  this.mouseCursor,
  this.child,
});