The type 'Map<String, String>' used in the 'for' loop must implement Iterable. code example
Example: The type 'Map' used in the 'for' loop must implement Iterable
void main() {
var usrMap = {"name": "Tom", 'Email': '[email protected]'};
usrMap.forEach((k,v) => print('${k}: ${v}'));
}