set method
Stores a value associated with a specified key.
Example:
req.store.set('foo', Foo());
Implementation
void set(String key, dynamic value) => _data[key] = value;
Stores a value associated with a specified key.
Example:
req.store.set('foo', Foo());
void set(String key, dynamic value) => _data[key] = value;