onTouchUp method

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

Sends the informating aboute touch up event on x, y coordinates (coordinates are absolute). Returns false when the page rendering is not initialised, true otherwise.

Implementation

bool onTouchUp(double x, double y) {
  bool? value = onTouchUpNative?.call(_sdk, x, y);

  return value!;
}