rotation property

double rotation

The rotation of this node in degrees.

myNode.rotation = 45.0;

Implementation

double get rotation => _rotation;
void rotation=(double rotation)

Implementation

set rotation(double rotation) {
  _rotation = rotation;
  invalidateTransformMatrix();
}