Deletes a key from storage.
Example:
await storage.delete('cart');
Future<void> delete(String key) async { await adapter.delete(key); }