withinDrawArea method

bool withinDrawArea(
  1. Point<num> point
)

Returns whether or not point is within the draw area bounds.

Implementation

bool withinDrawArea(Point<num> point) {
  return _layoutManager.withinDrawArea(point);
}