wipeAllStorageData static method

Future<void> wipeAllStorageData({
  1. List<String>? excludeKeys,
  2. bool andFromBackpack = true,
})

Wipe all storage data

Implementation

static Future<void> wipeAllStorageData({
  List<String>? excludeKeys,
  bool andFromBackpack = true,
}) async {
  await NyStorage.deleteAll(
      andFromBackpack: andFromBackpack, excludeKeys: excludeKeys);
}