rotation property

double rotation
inherited

Returns the angle of rotation in radians.

Implementation

double get rotation {
  return _rotation;
}
  1. @override
void rotation=(double? value)
override

This operation is not allowed for the stage and will throw an exception if called.

Implementation

@override
set rotation(double? value) {
  throw 'Cannot rotate stage';
}