PullDownMenuActionsRow.small constructor
const
PullDownMenuActionsRow.small({
- Key? key,
- required List<
PullDownMenuItem> items, - Color? dividerColor,
Creates a row of maximum 4 actions, icon only.
Actions have height of 44 logical pixels.
Implementation
const PullDownMenuActionsRow.small({
super.key,
required this.items,
this.dividerColor,
}) : _size = ElementSize.small,
assert(
items.length <= 4,
'Amount of [items] should not be more than 4',
);