scrollToRow method

Future<void> scrollToRow(
  1. int rowIndex
)

Scrolls the grid to the specified row.

Implementation

Future<void> scrollToRow(int rowIndex) async {
  WebViewController apiController = await controller.future;
  await apiController.runJavascript("flexmonster.scrollToRow($rowIndex)");
}