rowSpan method

Th rowSpan(
  1. int number, {
  2. bool? removeIf,
})

This attribute contains a non-negative integer value that indicates for how many rows the cell extends. Read more...

Implementation

Th rowSpan(int number, {bool? removeIf}) {
  if (removeIf != true && node.attrs != null) {
    VirtualAttr attr = VirtualAttr('rowspan', number.toString());
    node.attrs!.add(attr);
  }
  return this;
}