pointInArea method

  1. @override
bool pointInArea(
  1. Point point
)
override

A method which checks if a certain point is in the Area

Implementation

@override
bool pointInArea(Point point) => (m.distanceTo(point) < _r);