clear static method

Future<bool> clear()

🧹 Clear all stored data.

Implementation

static Future<bool> clear() async {
  assert(_prefs != null, 'Call EaseXStorage.init() first!');
  return await _prefs!.clear();
}