refresh method
Implementation
Future<void> refresh() async {
list.clear();
if (source case EventsCtrl evCtrl) {
evCtrl.list.forEach(input);
evCtrl.listen(input);
//if (includeSubTypes) {
for (var c in evCtrl.top) {
c.list.forEach(input);
c.listen(input);
}
//}
notifyListeners();
}
await query();
return;
}