cursorRow method

Future<int> cursorRow()

Get the current cursor row.

Implementation

Future<int> cursorRow() async {
  final sel = await VolvoxGridService.GetSelection(_getSelectionRequest);
  return sel.activeRow;
}