unset method

void unset(
  1. String key
)

Clear any value associated with the specified key.

Example:

req.store.unset('foo');

Implementation

void unset(String key) => _data.remove(key);