getInstance static method
Implementation
static HiveBoxProvider getInstance({required String boxName}) {
if (_cache.containsKey(boxName)) {
return _cache[boxName]!;
} else {
throw NoHiveBoxProviderError();
}
}
static HiveBoxProvider getInstance({required String boxName}) {
if (_cache.containsKey(boxName)) {
return _cache[boxName]!;
} else {
throw NoHiveBoxProviderError();
}
}