type property

EnumValue get type

Gets or sets the type of the Geometry. The default type is Geometry.Path. Other permissible values are Geometry.Line, Geometry.Ellipse, or Geometry.Rectangle.

Implementation

_i3.EnumValue get type => _i4.getProperty(
      this,
      'type',
    );
set type (EnumValue value)

Implementation

set type(_i3.EnumValue value) {
  _i4.setProperty(
    this,
    'type',
    value,
  );
}