mapToListB method

List<String> mapToListB(
  1. Map<String, bool> thisMap
)

Return list

Implementation

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