buildActions property
Widget
get
buildActions
Implementation
Widget get buildActions {
List<Widget> children = actions;
if (dividerColor != null && dividerThickness > 0) {
children = children.insertElementBetween(buildDivider(true));
}
return Universal(
constraints: BoxConstraints(maxHeight: actionsMaxHeight),
direction: Axis.horizontal,
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: children);
}