getActions method
Implementation
getActions(List param, context, int backcolor) {
myLogAll('getActions');
List<Widget> result = getLocalComponentsList(context, backcolor);
dynamic actions = getActionsBasic(param, context, backcolor);
if (actions != null) {
for (int i = 0; i < actions.length; i++) {
result.add(actions[i]);
}
}
return result;
}