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