sweepAngle property

num sweepAngle

Gets or sets the length of angle in degrees, or amount of arc to "sweep" for a PathSegment of type PathSegment.Arc|Arc. Must be between -360 and 360, inclusive.

Implementation

_i2.num get sweepAngle => _i4.getProperty(
      this,
      'sweepAngle',
    );
void sweepAngle=(num value)

Implementation

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