showCell method
Scroll the grid so that the specified cell is visible.
Implementation
Future<void> showCell(int row, int col) async {
await VolvoxGridService.ShowCell(
ShowCellRequest()
..gridId = _gridId
..row = row
..col = col,
);
}