isInitDone static method

bool isInitDone()

Implementation

static bool isInitDone() {
  try {
    ImageBoxService._imageStore!.cachedImageBox.findByName('');
    return true;
  } catch (e) {
    return false;
  }
}