onLongTertiaryPressed method

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

Adds a handler for long press gestures with the tertiary button to this widget in Arcane UI.

For bulk or special actions on long middle-click. Efficient, theme-aware implementation.

Implementation

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