hidePopupsWhere abstract method

void hidePopupsWhere(
  1. bool test(
    1. Marker marker
    ), {
  2. bool disableAnimation = false,
})

Hide popups for which the provided test return true.

If disableAnimation is true and a popup animation is enabled then the animation will not be used when hiding the popups.

Implementation

void hidePopupsWhere(
  bool Function(Marker marker) test, {
  bool disableAnimation = false,
});