rotation property

double get rotation

Implementation

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

Implementation

set rotation(double rotation) {
  if (_rotation != rotation) {
    _dirty = true;
    _rotation = rotation;
  }
}