pivotX property

double pivotX
inherited

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

Implementation

double get pivotX {
  return _pivotX;
}
  1. @override
void pivotX=(double value)
override

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

Implementation

@override
set pivotX(double value) {
  $originalPivotX = value;
  super.pivotX = value;
}