getBox method

Future<Box> getBox()

Implementation

Future<Box> getBox()async{
  Box hive=await Hive.openBox(_hiveBoxName);
  return hive;
}