pivotY property

double pivotY
inherited

Returns the y coordinate of the pivot point, the center of scaling and rotation.

Implementation

double get pivotY {
  return _pivotY;
}
  1. @override
void pivotY=(double value)
override

Throws an error as the pivotY property of the stage cannot be set.

Implementation

@override
set pivotY(double value) {
  throw 'Cannot pivot stage';
}