angle property

  1. @override
double angle
inherited

Rotation angle (in radians) of the component. The component will be rotated around its anchor point in the clockwise direction if the angle is positive, or counterclockwise if the angle is negative.

Implementation

@override
double get angle => transform.angle;
  1. @override
void angle=(double a)
inherited

Implementation

@override
set angle(double a) => transform.angle = a;