getActionsBasic method
Implementation
getActionsBasic(List? param, context, int backcolor) {
myLogAll('getActionsBasic');
List<Widget> result = [];
if (param != null && param.isNotEmpty) {
for (int i = 0; i < param.length; i++) {
dynamic w = getMyItem({gItem: param[i]}, context, backcolor);
if (param[i][gValue] == 58336) {
//message
w = addBadge(w, {gMsg: getMsgCnt()});
}
result.add(w);
}
}
return result;
}