WebView constructor

WebView({
  1. Key? key,
  2. required String url,
  3. required String cookie,
  4. Map<String, dynamic>? options,
  5. dynamic onCallback(
    1. WebViewCallback
    )?,
  6. List<String>? whitelistedUrlsAndroid,
  7. List<String>? whitelistedUrlsIos,
  8. String? hostName,
  9. VoidCallback? onPageFinished,
})

Implementation

WebView(
    {Key? key,
      required this.url,
      required this.cookie,
      this.options,
      this.onCallback,
      this.whitelistedUrlsAndroid,
      this.whitelistedUrlsIos,
      this.hostName,
      this.onPageFinished})
    : super(key: key);