getValueFocus method

dynamic getValueFocus(
  1. dynamic data,
  2. dynamic context
)

Implementation

getValueFocus(data, context) {
  myLogAll('getValueFocus');
  dynamic result = getValueCurrent();
  if (isNull(result)) {
    return '';
  }
  return result[gValue];
}