line property

EnumValue line

For drawing a simple straight line; a value for Geometry#type. The line goes from the point (#startX, #startY) to the point (#endX, #endY).

Implementation

static _i3.EnumValue get line => _i4.getProperty(
      _declaredGeometry,
      'Line',
    );
void line=(EnumValue value)

Implementation

static set line(_i3.EnumValue value) {
  _i4.setProperty(
    _declaredGeometry,
    'Line',
    value,
  );
}