hitTestOnBinding method

  1. @override
HitTestResult hitTestOnBinding (Offset location)
override

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

Implementation

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