getHiveBox static method
Implementation
static Future<Box<dynamic>> getHiveBox(
{Uint8List? encryptionKeyUint8List, String? key}) async {
return (hiveOpenBox = await Hive.openBox(_internalHiveBoxKey,
encryptionCipher: HiveAesCipher(encryptionKeyUint8List ??
await InitStorage()._getEncryptedKey(key))));
}