double rotation

The rotation of this node in degrees.

myNode.rotation = 45.0;

Source

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

Source

set rotation(double rotation) {
  assert(rotation != null);

  _rotation = rotation;
  invalidateTransformMatrix();
}