contains method
- Point point
Check if a point is inside the ring
Returns true if point is between inner and outer boundary.
Implementation
bool contains(Point point) {
final dist = center.distanceTo(point);
return dist >= innerRadius && dist <= outerRadius;
}