CellCloseButton constructor

const CellCloseButton({
  1. Key? key,
  2. ValueCell<bool> enabled = const ValueCell.value(true),
  3. MetaCell<void>? press,
  4. ValueCell<Color?>? color,
  5. ValueCell<ButtonStyle?>? style,
})

Implementation

const CellCloseButton({
  super.key,
  this.enabled = const ValueCell.value(true),
  this.press,
  this.color,
  this.style,
});