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