SlideActionPanel<T extends Widget> constructor

const SlideActionPanel<T extends Widget>({
  1. Key? key,
  2. required ActionLayout actionLayout,
  3. required List<T> actions,
  4. required ActionPosition position,
})

Implementation

const SlideActionPanel({
  Key? key,
  required this.actionLayout,
  required this.actions,
  required this.position,
}) : super(
        key: key,
        children: actions,
      );