mapToListO method

List<String> mapToListO(
  1. Map<String, Object> thisMap
)

DO9: Trying to handle String, Mission with this for connector Is #Object enough? Return list

Implementation

List<String> mapToListO(Map<String, Object> thisMap) {
  List<String> _l = [];
  thisMap.forEach((k, v) {
    //  we get:  Instance of 'Mission',  unless use: toString()
    String _v;
    _v = v.toString();
    String _s = '';
    _s = '$k, $_v';
    _l.add(_s);
  });
  return _l;
}