scope method

Th scope(
  1. String value, {
  2. bool? removeIf,
})

This attribute defines the cells that the header (defined in the <th>) element relates to. Read more...

Implementation

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