onDoubleTap method

GestureDetector onDoubleTap(
  1. VoidCallback callback
)

Wraps the current Widget in a GestureDetector widget with a double tap gesture callback.

Implementation

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