ActionsListWidget constructor

const ActionsListWidget({
  1. required List<Action>? actions,
  2. Key? key,
  3. TextStyle? sectionTitleStyle,
  4. TextStyle? contentStyle,
})

Creates an instance of ActionsListWidget.

Implementation

const ActionsListWidget({
  required this.actions, super.key,
  this.sectionTitleStyle,
  this.contentStyle,
});