scale property
Vector3
get
scale
Determines the receiver's scale.
Implementation
Vector3 get scale => transform.matrixScale;
set
scale
(Vector3 value)
Implementation
set scale(Vector3 value) {
transform =
Matrix4.compose(position, Quaternion.fromRotation(rotation), value);
}