showCell method

Future<void> showCell(
  1. int row,
  2. int col
)

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,
  );
}