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