rotationYDegrees property

double get rotationYDegrees

Implementation

double get rotationYDegrees => _rotationYDegrees;
set rotationYDegrees (double v)

Implementation

set rotationYDegrees(double v) {
  if (_rotationYDegrees == v) return;
  _rotationYDegrees = v;
  markNeedsLayout();
}