reload method
- Function notifyListeners
Implementation
void reload(Function notifyListeners) async {
state = ExploreSectionState.Loading;
notifyListeners();
if (args.filter != null) {
await args.filter!.init(notifyListeners);
}
tiles = await fetchTiles(queryParams);
state = ExploreSectionState.Loaded;
notifyListeners();
}