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