onLongPress method

GestureDetector onLongPress(
  1. VoidCallback callback
)

Wraps the current Widget in a GestureDetector widget with a long press gesture callback.

Implementation

GestureDetector onLongPress(VoidCallback callback) =>
    GestureDetector(onLongPress: callback, child: this);