notifyTouchMove method

void notifyTouchMove(
  1. FPosition<double> point
)

Implementation

void notifyTouchMove(FPosition<double> point) {
  for (var listener in _listener) {
    listener.moveListener?.call(point);
  }
}