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