CellOutlinedButton constructor
const
CellOutlinedButton({
- Key? key,
- ValueCell<
bool> enabled = const ValueCell.value(true), - MetaCell<
void> ? press, - MetaCell<
void> ? longPress, - MetaCell<
bool> ? onHover, - MetaCell<
bool> ? onFocusChange, - ValueCell<
ButtonStyle?> ? style, - ValueCell<
bool> autofocus = const ValueCell.value(false), - ValueCell<
Clip?> ? clipBehavior, - required ValueCell<
Widget?> child,
Implementation
const CellOutlinedButton({
super.key,
this.enabled = const ValueCell.value(true),
this.press,
this.longPress,
this.onHover,
this.onFocusChange,
this.style,
this.autofocus = const ValueCell.value(false),
this.clipBehavior,
required this.child,
});