onTouchDown method
Sends the informating aboute touch down event on x, y coordinates (coordinates are absolute).
Returns false when the page rendering is not initialised, true otherwise.
Implementation
bool onTouchDown(double x, double y) {
bool? value = onTouchDownNative?.call(_sdk, x, y);
return value!;
}