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