map_SI_toMapSS method

Map<String, String> map_SI_toMapSS(
  1. Map<String, int> thisMap
)

Return list

Implementation

Map<String, String> map_SI_toMapSS(Map<String, int> thisMap) {
  Map<String, String> _rM = {};
  thisMap.forEach((k, v) {
    //  _rM.putIfAbsent(k, () => null);
    ///  :hkl:fix:  4.9.2020
    _rM.putIfAbsent(k, () => v.toString());
  });
  return _rM;
}