moveTo 方法

void moveTo(
  1. Point<num> p
)

将此窗口移动到指定位置。

x 和 y 可以是负数。

其他资源

实现

void moveTo(Point p) {
  _moveTo(p.x.toInt(), p.y.toInt());
}