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