clear method
Resets every cell to a blank in style.
Implementation
void clear([Style style = Style.none]) {
final blank = style == Style.none ? Cell.blank : Cell(' ', style);
for (var i = 0; i < _cells.length; i++) {
_cells[i] = blank;
}
}