hasStorage top-level property

bool get hasStorage

True when the library was built with Storage bound.

Implementation

bool get hasStorage {
  ensureLibraryLoaded();
  try {
    return fdbHaveStorage() != 0;
  } on ArgumentError {
    // The symbol is absent from a build that did not select this product.
    return false;
  }
}