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>? whitelistedUrls,
  7. String? hostName,
})

Implementation

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