getTextValue method
dynamic
getTextValue(
- dynamic param,
- dynamic backcolor,
- dynamic context
Implementation
getTextValue(param, backcolor, context) {
myLogAll('getTextValue');
Map paramValue = getMap(param);
paramValue[gLabel] = param[gValue];
Widget wLabel = MyLabel(param, backcolor);
Widget wValue = MyLabel(paramValue, backcolor);
return Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [wLabel, wValue]);
}