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