cite method

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

A URL for a resource that explains the change (for example, meeting minutes). Read more...

Implementation

Del cite(String url, {bool? removeIf}) {
  if (removeIf != true && node.attrs != null) {
    VirtualAttr attr = VirtualAttr('cite', url);
    node.attrs!.add(attr);
  }
  return this;
}