1. override
bool containsPoint(Point<num> p)

Tests whether another is inside or along the edges of this.

Source

@override
bool containsPoint(math.Point<num> p) {
  return contains(p.x, p.y);
}