isEmpty property

bool isEmpty

Returns true if Store has not been initialized or is empty

Implementation

bool get isEmpty {
  if (_checkInit()) {
    return _store.box<JMDictEntryImpl>().isEmpty();
  }
  return true;
}