moveColumn method
Move a column to a new position.
Implementation
Future<void> moveColumn(int col, int position) async {
await VolvoxGridService.MoveColumn(MoveColumnRequest()
..gridId = _gridId
..col = col
..position = position);
notifyListeners();
}