AnnularSector constructor

AnnularSector({
  1. double startAngle = 0,
  2. double angle = TAU / 4,
  3. double outerRadius = 2,
  4. double innerRadius = 1,
  5. Vector3 arcCenter = ORIGIN,
  6. Color color = WHITE,
})

Implementation

AnnularSector(
    {double startAngle = 0,
    double angle = TAU / 4,
    this.outerRadius = 2,
    this.innerRadius = 1,
    Vector3 arcCenter = ORIGIN,
    Color color = WHITE})
    : super(
        startAngle: startAngle,
        angle: angle,
        radius: outerRadius,
        arcCenter: arcCenter,
        color: color,
      );