LiveCloseButton constructor
      const
      LiveCloseButton({ 
    
    
- Key? key,
- ValueCell<bool> enabled = const ValueCell.value(true),
- ActionCell? press,
- Color? color,
- ButtonStyle? style,
Implementation
const LiveCloseButton({
  super.key,
  this.enabled = const ValueCell.value(true),
  this.press,
  this.color,
  this.style,
});