position property
NotifyingVector2
get
position
The translation part of the transform. This translation is applied relative to the global coordinate space.
The returned vector can be modified by the user, and the changes will be propagated back to the transform matrix.
Implementation
NotifyingVector2 get position => _position;
set
position
(Vector2 position)
Implementation
set position(Vector2 position) => _position.setFrom(position);