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

Sets the vertical coordinate of the object's origin point.

Implementation

@override
set pivotY(double value) {
  $originalPivotY = value;
  super.pivotY = value;
}