skip to Main Content

The class 'WebViewController' doesn't have an unnamed constructor – Flutter

I have a problem with my flutter app using the package webview_flutter , here Is my code: pubspec.yaml webview_flutter: ^4.0.6 dart WebViewController breachWebViewController = WebViewController() ..setJavaScriptMode(JavaScriptMode.unrestricted) ..setBackgroundColor(const Color(0x00000000)) ..setNavigationDelegate( NavigationDelegate( onProgress: (int progress) { // Update loading bar. }, onPageStarted:…

VIEW QUESTION
Back To Top
Search