getCirclePath function

Path getCirclePath(
  1. Offset offset,
  2. double radius
)

Implementation

Path getCirclePath(Offset offset, double radius) {
  Rect _rect = Rect.fromCircle(radius: radius, center: offset);
  return Path()..addOval(_rect);
}