onDoubleTapDown method

  1. @override
  2. @mustCallSuper
void onDoubleTapDown(
  1. DoubleTapDownEvent event
)

This triggers immediately after the down event of the second tap.

Implementation

@override
@mustCallSuper
void onDoubleTapDown(DoubleTapDownEvent event) {
  for (final fn in _tapDownFns) {
    fn(event);
  }
}