closeWindow method

dynamic closeWindow(
  1. Key key
)

Implementation

closeWindow(Key key) {
  final window = _findWindowWithIndex(key);
  _windows.remove(window.windowState);
  notifyListeners();
}