initBox method

Future<void> initBox(
  1. String boxKey
)

Implementation

Future<void> initBox(String boxKey) async {
  box = await Get.openSafeBox(boxKey);
  isBoxInited = true;
}