onLongPressed method

Widget onLongPressed(
  1. VoidCallback action, {
  2. HitTestBehavior? behavior,
  3. Set<PointerDeviceKind>? supportedDevices,
})

Implementation

Widget onLongPressed(VoidCallback action,
        {HitTestBehavior? behavior,
        Set<PointerDeviceKind>? supportedDevices}) =>
    OnGesture.longPress(
        action: action,
        behavior: behavior,
        supportedDevices: supportedDevices,
        child: this);