onTouchDown method

bool onTouchDown(
  1. double x,
  2. double y
)

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!;
}