circle static method

Shaper circle({
  1. double startAngle = 0,
  2. double endAngle = 2 * pi,
})

static shapes

Implementation

static Shaper circle({
  double startAngle = 0,
  double endAngle = 2 * pi,
}) {
  return CircleShape(
    startAngle: startAngle,
    endAngle: endAngle,
  );
}