void printMap(String title, Map<String, dynamic> map) { printInfo(title); map.forEach((key, value) { printInfo("$key: $value"); }); }