Translate the circle by x horizontally and y vertically.
x
y
@override Circle translate({double x = 0, double y = 0}) { return Circle(radius: radius, center: Point(center.x + x, center.y + y)); }