onLongPress method

Widget onLongPress(
  1. VoidCallback? onLongPress,
  2. Key? key, {
  3. HitTestBehavior hitTestBehavior = HitTestBehavior.deferToChild,
})

Implementation

Widget onLongPress(VoidCallback? onLongPress, Key? key,
    {HitTestBehavior hitTestBehavior = HitTestBehavior.deferToChild}) {
  return MouseRegion(
    key: key,
    cursor: SystemMouseCursors.click,
    child: GestureDetector(
      behavior: hitTestBehavior,
      onLongPress: onLongPress,
      child: this,
    ),
  );
}