fuseSecondaryTapDown function

void fuseSecondaryTapDown(
  1. FuseSecondaryTapDownFn fn
)

Calls fn when a secondary tap down event occurs.

Implementation

void fuseSecondaryTapDown(FuseSecondaryTapDownFn fn) {
  final component = fuseComponent<FuseSecondaryTaps>();
  component._secondaryTapDownFns.add(fn);
}