cite method
The value of this attribute is a URL that designates a source document or message for the information quoted. Read more...
Implementation
WidgetElement cite(String url, {bool? removeIf}) {
if (removeIf != true && node.attrs != null) {
VirtualAttr attr = VirtualAttr('cite', url);
node.attrs!.add(attr);
}
return this;
}