init method

Future<void> init({
  1. int boxNo = 1,
})

Implementation

Future<void> init({int boxNo = 1}) async {
  _secureBox = await Get.openSafeBox('SecurePreferences$boxNo');
}