moveMenuItemParentOneLevelUp method

Future<void> moveMenuItemParentOneLevelUp(
  1. int menuId,
  2. int itemId
)

Moves the given menu item one level up in the menu tree

Implementation

Future<void> moveMenuItemParentOneLevelUp(int menuId, int itemId) async {
  await _put('/api/menu/$menuId/item/$itemId/move/parent/one/level/up');
}