Map<String, int> get searchable { //for search box. mentions + tags if (!_sigilsChecked) { _sigilIndex(); } Map<String, int> m = mentionsWithPopularity; tagsWithPopularity.forEach((key, value) { m[key] = value; }); return m; }