init method

void init(
  1. Function notifyListeners
)

Implementation

void init(Function notifyListeners) async {
  // If its already loaded dont reload
  if (state == ExploreSectionState.Loaded) {
    return;
  }

  reload(notifyListeners);
}