How do I make my current code compatible with V4 update I checked their documentation but I couldn't follow along
final Completer<WebViewController> _controller = Completer<WebViewController>();
WebView.platform = SurfaceAndroidWebView();
WebView(
initialUrl: widget.url,
javascriptMode: JavascriptMode.unrestricted,
onWebViewCreated: (WebViewController webViewController) {
_controller.complete(webViewController);
},
navigationDelegate: (NavigationRequest request) {}
onProgress: (progress) {},
gestureNavigationEnabled: true,
),