removeAllModals function

void removeAllModals()

Implementation

void removeAllModals() {
  for (final modal in _modalsMap.values) {
    modal.remove();
  }
  _modalsMap.clear();
}