initializeWindowsWebView function

void initializeWindowsWebView()

Initializes WebView for Windows platform

On Windows, desktop_webview_window provides native WebView2 integration. Users need:

Implementation

void initializeWindowsWebView() {
  if (defaultTargetPlatform == TargetPlatform.windows) {
    debugPrint('Windows WebView initialized via WebView2');
  }
}