onTouchMove method

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

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

Implementation

bool onTouchMove(double x, double y) {
  bool? value = onTouchMoveNative?.call(_sdk, x, y);

  return value!;
}