dismiss static method

void dismiss(
  1. String dialogId
)

Implementation

static void dismiss(String dialogId) {
  final entry = _overlays[dialogId];
  if (entry != null) {
    entry.remove();
    _overlays.remove(dialogId);
  }
}