mapToListI method

List<String> mapToListI(
  1. Map<String, int> thisMap
)

Return list

Implementation

List<String> mapToListI(Map<String, int> thisMap) {
  List<String> _l = [];
  thisMap.forEach((k, v) {
    String _s = '';
    _s = '$k $v';
    _l.add(_s);
  });
  return _l;
}