onSecondaryTapCancel method

  1. @override
  2. @mustCallSuper
void onSecondaryTapCancel(
  1. SecondaryTapCancelEvent event
)

Implementation

@override
@mustCallSuper
void onSecondaryTapCancel(SecondaryTapCancelEvent event) {
  super.onSecondaryTapCancel(event);

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