clearAll static method

Future<void> clearAll()

Clear all data stored by WhaleStorage in SharedPreferences.

Implementation

static Future<void> clearAll() async {
  if (_prefs != null) {
    await _prefs!.clear();
  }
}