mapToList method

List<String> mapToList(
  1. Map<String, String> thisMap
)

Return list

Implementation

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