y property Null safety
Y coordinate in editor world space.
Implementation
double get y => _y;
Change the _y
field value.
yChanged will be invoked only if the field's value has changed.
Implementation
set y(double value) {
if (_y == value) {
return;
}
double from = _y;
_y = value;
if (hasValidated) {
yChanged(from, value);
}
}