onLongPress method

Widget onLongPress(
  1. dynamic function()
)

Implementation

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