cellAt method

VtRenderCellSnapshot cellAt({
  1. required int row,
  2. required int column,
})

Implementation

VtRenderCellSnapshot cellAt({required int row, required int column}) {
  return rowAt(row).cellAt(column);
}