RowMenuSection constructor

const RowMenuSection({
  1. Key? key,
  2. required String title,
  3. String? actionLabel,
  4. VoidCallback? onActionTap,
  5. required List<Widget> items,
})

Implementation

const RowMenuSection({
  super.key,
  required this.title,
  this.actionLabel,
  this.onActionTap,
  required this.items,
});