moveRow method

Future<void> moveRow(
  1. int row,
  2. int position
)

Move a row to a new position.

Implementation

Future<void> moveRow(int row, int position) async {
  await VolvoxGridService.MoveRow(MoveRowRequest()
    ..gridId = _gridId
    ..row = row
    ..position = position);
  notifyListeners();
}