length property

int get length

Implementation

int get length {
  if (_config.type == StorageType.sharedPreferences) {
    if (_config.enableEncryption) {
      return getKeys().length;
    } else {
      return _prefs!.getKeys().length;
    }
  } else {
    return _hiveBox!.length;
  }
}