rows property

List<Row> get rows

Gets the rows.

Implementation

List<Row> get rows => _rows;
set rows (List<Row> value)

Sets the rows.

Implementation

set rows(List<Row> value) {
  _rows = value;
  if (_cursor > _rows.length - 1) {
    _cursor = _rows.length - 1;
  }
  updateViewport();
}