AngleFactory constructor

const AngleFactory({
  1. double startAngle = 0,
  2. double initialSweepAngle = math.pi / 4,
  3. double arcRadius = 24,
})

Creates an angle factory.

Implementation

const AngleFactory({
  this.startAngle = 0,
  this.initialSweepAngle = math.pi / 4,
  this.arcRadius = 24,
});