removeModal function

void removeModal(
  1. String id
)

Implementation

void removeModal(String id) {
  final overlay = _modalsMap[id];
  if (overlay != null) {
    overlay.remove();
    _modalsMap.remove(id);
  }
}