closeWebViewWindow static method

void closeWebViewWindow()

Close WebView window on completed status

Implementation

static void closeWebViewWindow() {
  if (_webViewWindow != null && !_webViewWindow!.closed!) {
    _webViewWindow!.close();
    _webViewWindow = null;
  }
}