List<String> get collections { List<String> collections = new List<String>(); for (var item in _snapshot['collections']) { String key = item["name"]; collections.add(key); } return collections; }