onLongPress method

Widget onLongPress(
  1. VoidCallback onLongPress
)

Add onLongPress gesture

Implementation

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