endY property
      
      num
      get
      endY
      
    
    
Gets or sets the ending Y 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 endY => _i4.getProperty(
      this,
      'endY',
    );
      
      set
      endY
      (num value) 
      
    
    
    
Implementation
set endY(_i2.num value) {
  _i4.setProperty(
    this,
    'endY',
    value,
  );
}