PopUpActionbutton constructor
- Key? key,
- Widget collapsedChild = const Icon(Icons.add),
- required Widget expandedChild(
- dynamic ()
- EdgeInsets padding = const EdgeInsets.all(15),
Implementation
const PopUpActionbutton({
Key? key,
this.collapsedChild = const Icon(Icons.add),
required this.expandedChild,
this.padding = const EdgeInsets.all(15),
}) : super(key: key);