void callListeners(List<String> keys) { _observers.forEach((key, value) { if (keys.contains(key)) value.forEach((l) => l.callBack.call()); }); }