The position of this node relative to its parent.
myNode.position = new Point(42.0, 42.0);
Source
Point get position => _position;
Source
set position(Point position) { assert(position != null); _position = position; invalidateTransformMatrix(); }