rowSpan property

num rowSpan

Sets or retrieves how many rows in a table the cell should span.

MDN Reference

Implementation

_i2.num get rowSpan => _i4.getProperty(
      this,
      'rowSpan',
    );
void rowSpan=(num value)

Implementation

set rowSpan(_i2.num value) {
  _i4.setProperty(
    this,
    'rowSpan',
    value,
  );
}