onDoubleTap method
Returns a new GestureDetector widget with the given onDoubleTap callback.
Implementation
GestureDetector onDoubleTap(void Function()? onDoubleTap) {
return GestureDetector(onDoubleTap: onDoubleTap, child: this);
}
Returns a new GestureDetector widget with the given onDoubleTap callback.
GestureDetector onDoubleTap(void Function()? onDoubleTap) {
return GestureDetector(onDoubleTap: onDoubleTap, child: this);
}