CellCheckedPopupMenuItem<T> constructor

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

Implementation

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