tap method

void tap(
  1. TapEvent? event
)

sets or clears a tap event. Clearing a tap event usually means that the context menu should not be shown anymore

Implementation

void tap(TapEvent? event) {
  _tapSubject.add(event);
}