x property
X coordinate in editor world space.
Implementation
double get x => _x;
Change the _x
field value.
xChanged will be invoked only if the field's value has changed.
Implementation
set x(double value) {
if (_x == value) {
return;
}
double from = _x;
_x = value;
xChanged(from, value);
}