onDoublePressed method

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

Implementation

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