deleteAll static method
Deletes all keys with associated values.
Implementation
static Future deleteAll({bool andFromBackpack = false}) async {
if (andFromBackpack == true) {
Backpack.instance.deleteAll();
}
await StorageManager.storage.deleteAll();
}