openHiveBox<T> method

Future<Box<T>> openHiveBox<T>([
  1. String? boxName
])

Implementation

Future<Box<T>> openHiveBox<T>([String? boxName]) async =>
    await Hive.openBox<T>(boxName ?? T.toString(), encryptionCipher: HiveAesCipher(_hiveKey));