Set terminal dimensions.
void setDimensions({int? columns, int? rows}) { if (columns != null) _columns = columns; if (rows != null) _rows = rows; }