PopUpActionbutton constructor

const PopUpActionbutton({
  1. Key? key,
  2. Widget collapsedChild = const Icon(Icons.add),
  3. required Widget expandedChild(
    1. dynamic ()
    ),
  4. 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);