remove static method

Future<bool> remove(
  1. String key
)

🗑️ Delete a key.

Implementation

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