getInstance static method

HiveBoxProvider getInstance({
  1. required String boxName,
})

Implementation

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