shouInitialize method

bool shouInitialize ()

Returns true if AppContext has not been initialized

This method should be called within initializeContext, please double check if needed if called externally.

Implementation

bool shouInitialize() {
  if (loadingState == LoadingState.SUCCESS) {
    return false;
  }
  return true;
}