prettyPrintMap method
- Map map
Creates a string from a map by putting each entry on a separate line and prefixing it with spaces according to its depth within the map.
Implementation
static String prettyPrintMap(Map<dynamic, dynamic> map) {
return _prettyPrintMap(map, 0);
}