setLeftCol method

Future<void> setLeftCol(
  1. int col
)

Set the leftmost visible scrollable column.

Implementation

Future<void> setLeftCol(int col) async {
  await VolvoxGridService.SetLeftCol(
    SetColRequest()
      ..gridId = _gridId
      ..col = col,
  );
}