cite method

WidgetElement cite(
  1. String url, {
  2. bool? removeIf,
})

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;
}