clearCell method

void clearCell(
  1. int r,
  2. int c
)

Implementation

void clearCell(int r, int c) {
  final col = columns[c];
  if (col.isReadOnly) return;
  writeCell(r, c, '');
}