angle property

double angle

The rotation part of the transform. This represents rotation around the position point in clockwise direction by angle radians. If the angle is negative then the rotation is counterclockwise.

Implementation

double get angle => _angle;
void angle=(double a)

Implementation

set angle(double a) {
  _angle = a;
  _markAsModified();
}