open method

Future<void> open()

Implementation

Future<void> open() async {
  _box = await Hive.openLazyBox(
    boxName,
    encryptionCipher: encryptionCipher,
    path: boxPath,
  );
}