scaleX property

double scaleX
inherited

Returns the horizontal scale of the object.

Implementation

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

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

Implementation

@override
set scaleX(double? value) {
  throw 'Cannot scale stage';
}