cite method

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

A URL that designates a source document or message for the information quoted. Read more...

Implementation

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