rotation property

double rotation

Implementation

double get rotation {
  return _rotation;
}
void rotation=(double value)

Implementation

set rotation(double value) {
  if (_rotation == value) {
    return;
  }
  _rotation = value;
  markTransformDirty();
}