openHiveLazyBox<T> method

Future<LazyBox<T>> openHiveLazyBox<T>([
  1. String? boxName
])

Implementation

Future<LazyBox<T>> openHiveLazyBox<T>([String? boxName]) async =>
    await Hive.openLazyBox<T>(boxName ?? T.toString(), encryptionCipher: HiveAesCipher(_hiveKey));