contains method

bool contains(
  1. Point point
)

Check if a point is inside this circle (alias for hasPoint)

Implementation

bool contains(Point point) => hasPoint(point);