startAngle property

int startAngle

Implementation

int get startAngle => _startAngle;
void startAngle=(int value)

Implementation

set startAngle(int value) {
  if (_startAngle != value) {
    _startAngle = value;
    markNeedsLayout();
  }
}