reload method

void reload(
  1. 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();
}