Converts a list of key-value pairs to a Map
Map<K, V> fromPairs<K extends String, V>(List<MapEntry<K, V>> entries) { return Map.fromEntries(entries); }