x property
Implementation
@override
get x => _x ?? CSSLengthValue.zero;
Implementation
set x(CSSLengthValue? value) {
if (_x == value) return;
_x = value;
_markShapeUpdate();
}
@override
get x => _x ?? CSSLengthValue.zero;
set x(CSSLengthValue? value) {
if (_x == value) return;
_x = value;
_markShapeUpdate();
}