endX property

num get endX

Gets or sets the ending X coordinate of the Geometry if it is of type Geometry.Line|Line, Geometry.Rectangle|Rectangle, or Geometry.Ellipse|Ellipse. The initial value is zero.

Implementation

_i2.num get endX => _i4.getProperty(
      this,
      'endX',
    );
set endX (num value)

Implementation

set endX(_i2.num value) {
  _i4.setProperty(
    this,
    'endX',
    value,
  );
}