setAttribute method
Sets a request-scoped attribute with the given key and value.
Store a value value under key.
Implementation
void setAttribute(String key, dynamic value) => _attributes[key] = value;
Sets a request-scoped attribute with the given key and value.
Store a value value under key.
void setAttribute(String key, dynamic value) => _attributes[key] = value;