fill method

  1. @override
void fill(
  1. Cell? cell
)

Fills the entire terminal screen with the given cell.

Implementation

@override
void fill(Cell? cell) {
  _buf.fill(cell);
}