static Map<String, API> from(YamlMap map) { Map<String, API> apis = HashMap(); map.forEach((k, v) { apis[k] = API.from(k, v); }); return apis; }