setTopRow method

Future<void> setTopRow(
  1. int row
)

Set the topmost visible scrollable row.

Implementation

Future<void> setTopRow(int row) async {
  await VolvoxGridService.SetTopRow(
    SetRowRequest()
      ..gridId = _gridId
      ..row = row,
  );
}