containsLocalPoint method

  1. @override
bool containsLocalPoint(
  1. Vector2 point
)
override

Tests whether the given point lies within the viewport.

This method must be consistent with the action of clip, in the sense that containsLocalPoint must return true if and only if that point on the canvas is not clipped by clip.

Implementation

@override
bool containsLocalPoint(Vector2 point) => true;