moveTo method Null safety

void moveTo (
  1. Point<num> p
)

Moves this window to a specific position.

x and y can be negative.

Other resources

Implementation

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