remove static method

void remove(
  1. OverlayShower? shower
)

Implementation

static void remove(OverlayShower? shower) {
  _list().remove(shower);
  _map().removeWhere((key, value) => value == shower);
}