reset method

void reset()

Reset all cells to empty.

Implementation

void reset() {
  for (final cell in content) {
    cell.reset();
  }
}