onLongPress method

Widget onLongPress(
  1. VoidCallback onLongPress
)

Implementation

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