MarkerTapBehavior.none constructor

MarkerTapBehavior.none(
  1. dynamic onTap(
    1. Marker marker,
    2. 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(Marker marker, PopupController popupController) onTap)
    : _onTap = ((_, __) {});