containsPoint method

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

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

Implementation

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