onDragEnd method

bool onDragEnd(
  1. Point<double> localPosition,
  2. double scale,
  3. double pixelsPerSecond
)

Implementation

bool onDragEnd(
    Point<double> localPosition, double scale, double pixelsPerSecond) {
  return _activeListeners.any((GestureListener listener) =>
      listener.onDragEnd?.call(localPosition, scale, pixelsPerSecond) ??
      false);
}