Write cookie value with the given key to the storage.
value
key
@override Future<void> write(String key, String value) async { final box = await _openBox(); await box.put(key, value); }