position property

Offset position

The position of this node relative to its parent.

myNode.position = new Point(42.0, 42.0);

Implementation

Offset get position => _position;
void position=(Offset position)

Implementation

set position(Offset position) {
  _position = position;
  invalidateTransformMatrix();
}