hitTestOnBinding method Null safety
- Offset location
override
Forwards the given location to the binding's hitTest logic.
Implementation
@override
HitTestResult hitTestOnBinding(Offset location) {
assert(location != null);
location = binding.localToGlobal(location);
return super.hitTestOnBinding(location);
}