onLongPress method

Widget onLongPress(
  1. VoidCallback action
)

Add long-press gesture detector

Implementation

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