deleteFort method

Future<void> deleteFort()

Deletes everything inside the Fort Boxes will be closed after they are cleared Deletes boxes that are reference from the GENERAL_KEY

Implementation

Future<void> deleteFort() async {
  for(String key in openBoxes.keys){
    await deleteBox(key);
  }
}