write method

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

Writes the string value associated with key to storage.

Implementation

@override
void write(String key, String value) => _storage[key] = value;