delete static method

Future delete(
  1. String key
)

Deletes associated value for the given key.

Implementation

static Future delete(String key) async {
  return await StorageManager.storage.delete(key: key);
}