1. override
HitTestResult hitTestOnBinding(Point location)

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

Source

@override
HitTestResult hitTestOnBinding(Point location) {
  location = binding.localToGlobal(location);
  return super.hitTestOnBinding(location);
}