abbr method

Th abbr(
  1. String text, {
  2. bool? removeIf,
})

This attribute contains a short abbreviated description of the cell's content. Read more...

Implementation

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