setAttribute function
Returns an AttributeGenerator that generates an attribute with the
given name and value.
Example:
Whitelist.none
.tags('a')
.extraAttributes('a', setAttribute('target', '_blank'));
Implementation
AttributeGenerator setAttribute(String name, String value) =>
((t, o, c) => c[name] = value);