HitTestResult hitTestOnBinding(Point location)

Forwards the given location to the binding's hitTest logic.

Source

HitTestResult hitTestOnBinding(Point location) {
  final HitTestResult result = new HitTestResult();
  binding.hitTest(result, location);
  return result;
}