scaleX property

double scaleX

Implementation

double get scaleX => _scaleX;
void scaleX=(double value)

Change the _scaleX field value. scaleXChanged will be invoked only if the field's value has changed.

Implementation

set scaleX(double value) {
  if (_scaleX == value) {
    return;
  }
  double from = _scaleX;
  _scaleX = value;
  if (hasValidated) {
    scaleXChanged(from, value);
  }
}