Moves the given menu item to the new position
Future<void> moveMenuItem(int itemId, int position) async { await _put('/api/menu-item/$itemId', data: { 'position': position, }); }