cite method
This attribute defines the URI of a resource that explains the change, such as a link to meeting minutes or a ticket in a troubleshooting system. Read more...
Implementation
Ins cite(String url, {bool? removeIf}) {
if (removeIf != true && node.attrs != null) {
VirtualAttr attr = VirtualAttr('cite', url);
node.attrs!.add(attr);
}
return this;
}