moveColumn method

Future<void> moveColumn(
  1. int col,
  2. int position
)

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();
}