delete static method

void delete(
  1. String key
)

Deletes a value from storage for the given key.

Implementation

static void delete(String key) {
  _backend?.delete(key);
}