rows property

List<Row>? get rows

Implementation

List<Row>? get rows => this._rows;
set rows (List<Row>? rows)

Implementation

set rows(List<Row>? rows) {
  this._rows = rows;
}