moveWindow method
MoveWindow moves window to the specified position.
For further details, please see: https://docs.opencv.org/master/d7/dfc/group__highgui.html#ga8d86b207f7211250dbe6e28f76307ffb
Implementation
void moveWindow(int x, int y) {
cvRunArena((arena) {
cvRun(() => chighgui.Window_Move(name.toNativeUtf8(allocator: arena).cast(), x, y));
});
}