moveTo method - Window class - dart:html library (original) (raw)

description

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());
}