isPointerOverThumbH method
Returns true if the provided Offset is located over the thumb of the horizontal Scrollbar.
Implementation
@protected
bool isPointerOverThumbH(Offset position, PointerDeviceKind kind) {
Offset localPosition = position.toLocal(context);
return horizontalScrollbar.hitTestOnlyThumbInteractive(localPosition, kind);
}