scaleX property
The horizontal scale of this node relative its parent.
myNode.scaleX = 5.0;
Implementation
double get scaleX => _scaleX;
Implementation
set scaleX(double scaleX) {
assert(scaleX != null);
_scaleX = scaleX;
invalidateTransformMatrix();
}