xcmd_Save method

dynamic xcmd_Save()

Implementation

xcmd_Save() async {
  //se รจ new gli do ID, prima di save che sovrascrive
  if (itemInEdit_Clone.id == "") {
    itemInEdit_Clone.id = Uuid().v4();
  }
  editedPage.value = false;
  itemInEdit_Clone.copyProps(itemInEdit_Clone, widget.itemInEdit);
  await xOnSaveAfter();
  // Navigator.pop(context);
}