onDoubleTapUp method
This triggers when the pointer stops contacting the device after the second tap.
Implementation
@override
@mustCallSuper
void onDoubleTapUp(DoubleTapEvent event) {
super.onDoubleTapUp(event);
for (final fn in _doubleTapUpFns) {
fn(event);
}
}