blurX property

double blurX

Returns the value of _blurX.

Implementation

double get blurX {
  return _blurX;
}
void blurX=(double blur)

Sets the value of _blurX to the given blur.

Implementation

set blurX(double blur) {
  if (_blurX == blur) {
    return;
  }
  _blurX = Math.max(blur, 0);
  dirty = true;
}