PullDownMenuActionsRow.medium constructor

const PullDownMenuActionsRow.medium({
  1. Key? key,
  2. required List<PullDownMenuItem> items,
  3. Color? dividerColor,
})

Creates a row of maximum 3 actions, icon and short (one worded) title.

Actions have height of 66 logical pixels.

Implementation

const PullDownMenuActionsRow.medium({
  super.key,
  required this.items,
  this.dividerColor,
})  : _size = ElementSize.medium,
      assert(
        items.length <= 3,
        'Amount of [items] should not be more than 3',
      );