LiveCloseButton constructor

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

Implementation

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