openBox static method

dynamic openBox({
  1. String? boxKey,
})

Implementation

static openBox({String? boxKey}) async {
  _boxKey = boxKey ?? _boxKey;
  _box = await Hive.openLazyBox(_boxKey);
}