onSecondaryTapDown method

  1. @override
  2. @mustCallSuper
void onSecondaryTapDown(
  1. SecondaryTapDownEvent event
)

Implementation

@override
@mustCallSuper
void onSecondaryTapDown(SecondaryTapDownEvent event) {
  super.onSecondaryTapDown(event);

  for (final fn in _secondaryTapDownFns) {
    fn(event);
  }
}