Arc constructor

Arc({
  1. num innerRadius = 0,
  2. num outRadius = 0,
  3. num startAngle = 0,
  4. num sweepAngle = 0,
  5. num cornerRadius = 0,
  6. num padAngle = 0,
  7. Offset center = Offset.zero,
})

Implementation

Arc({
  this.innerRadius = 0,
  this.outRadius = 0,
  this.startAngle = 0,
  this.sweepAngle = 0,
  this.cornerRadius = 0,
  this.padAngle = 0,
  this.center = Offset.zero,
});