hitTestOnBinding method
- @override
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);
}