HIVE_BOX_COLLECTION_NAME property

String get HIVE_BOX_COLLECTION_NAME

Implementation

static String get HIVE_BOX_COLLECTION_NAME => _hiveBoxCollectionName;
set HIVE_BOX_COLLECTION_NAME (String value)

Implementation

static set HIVE_BOX_COLLECTION_NAME(String value) {
  if (_hiveBoxCollectionName != value) {
    _hiveBoxCollectionName = value;
    // Reset hive state when collection name changes
    _openedBoxes.clear();
    _hiveBoxCollection = null;
    _alreadyInitialized = false;
    // Note: We do NOT clear configs - they are still valid,
    // just need to be re-registered with new collection
  }
}