onSecondaryPressed method

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

Implementation

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