setConfig method
Called by the link internals to set a config on this node.
Implementation
Response? setConfig(
String name,
Object value,
Responder responder,
Response? response,
) {
if (response != null) {
return response..close();
} else {
if (!name.startsWith(r'$')) {
name = '\$$name';
}
configs[name] = value;
return null;
}
}