getTextValue method

dynamic getTextValue(
  1. dynamic param,
  2. dynamic backcolor,
  3. 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]);
}