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