clearAll static method
Clear all data stored by WhaleStorage in SharedPreferences.
Implementation
static Future<void> clearAll() async {
if (_prefs != null) {
await _prefs!.clear();
}
}
Clear all data stored by WhaleStorage in SharedPreferences.
static Future<void> clearAll() async {
if (_prefs != null) {
await _prefs!.clear();
}
}