cursorCol method

Future<int> cursorCol()

Get the current cursor column.

Implementation

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