moveUpOut method
Implementation
Future<void> moveUpOut(VEntity dragged) async {
List<VEntity> sel = selection.value;
if (!sel.contains(dragged)) {
sel.add(dragged);
}
for (VEntity i in sel) {
await move(
i, ((await getEntity(VPaths.parentOf(workingDirectory))) as VFolder));
}
selection.add([]);
update();
}