onLongPress method

Widget onLongPress(
  1. VoidCallback? onLongPress
)

Wraps widget with long press gesture

Implementation

Widget onLongPress(VoidCallback? onLongPress) {
  return GestureDetector(onLongPress: onLongPress, child: this);
}