MarkerTapBehavior.none constructor

MarkerTapBehavior.none(
  1. dynamic onTap(
    1. PopupSpec popupSpec,
    2. PopupState popupState,
    3. PopupController popupController
    )
)

Do nothing when tapping the marker. This is useful if you want to control popups exclusively with the PopupController.

Implementation

MarkerTapBehavior.none(
    Function(
  PopupSpec popupSpec,
  PopupState popupState,
  PopupController popupController,
)
        onTap)
    : _onTap = ((_, __, ___) {});