fillArea method

  1. @override
void fillArea(
  1. Cell? cell,
  2. Rectangle area
)

Fills the specified area with the given cell.

Implementation

@override
void fillArea(Cell? cell, Rectangle area) {
  _buf.fillArea(cell, area);
}