write abstract method

void write(
  1. String key,
  2. String value
)

Persists value under key, overwriting any previous value.

Must never throw. A backend that can't write should swallow the failure silently.

Implementation

void write(String key, String value);