Convert an Iterable<MapEntry<String, dynamic>> to a Map<String, dynamic>
Map<String, dynamic> toMap() { return Map.fromEntries(this); }