makeAction method
Implementation
Widget makeAction(String label, VoidCallback onTap, {Color? color}) {
if (color != null) {
return StadiumElevatedButton(child: label.text(), onPressed: onTap, fillColor: color).constrainedBox(minWidth: ACTION_MIN_WIDTH);
}
return StadiumOutlinedButton(child: label.text(), onPressed: onTap).constrainedBox(minWidth: ACTION_MIN_WIDTH);
}