handleOnLongPress method
void
handleOnLongPress()
inherited
Implementation
void handleOnLongPress() {
if (!mounted) return;
widget.onLongPress?.call();
if (widget.enableFeedback) Feedback.forLongPress(context);
}