SlideActionListDelegate constructor

const SlideActionListDelegate({
  1. required List<Widget>? actions,
})

Creates a delegate that supplies slide actions using the given list.

The actions argument must not be null.

Implementation

const SlideActionListDelegate({
  required this.actions,
});