destroy method

void destroy(
  1. String key
)

ReadableStore proxy can be destroyed, takes the key of the value to be destroyed.

Implementation

void destroy(String key) {
  _store[key]?.destroy();
}