openBox method

Future<void> openBox()

Implementation

Future<void> openBox() async {
  await Hive.openBox<T>(_key);
  _box = Hive.box<T>(_key);
}