WebView constructor

const WebView(
  1. String url, {
  2. Key? key,
  3. String? jsChannel,
  4. dynamic onMessageReceived(
    1. JavaScriptMessage
    )?,
  5. dynamic onGetTitle(
    1. String?
    )?,
  6. Future<NavigationDecision> onNavigation(
    1. NavigationRequest?
    )?,
})

Implementation

const WebView(this.url,
    {Key? key,
    this.jsChannel,
    this.onMessageReceived,
    this.onGetTitle,
    this.onNavigation})
    : super(key: key);