build method
Build the widget underneath this widget in the tree
Implementation
@override
Widget build(BuildContext context) {
return CloseButton(
color: color,
onPressed: enabled() ? press?.trigger : null,
style: style,
);
}
Build the widget underneath this widget in the tree
@override
Widget build(BuildContext context) {
return CloseButton(
color: color,
onPressed: enabled() ? press?.trigger : null,
style: style,
);
}