AppBridgeWebView constructor

const AppBridgeWebView({
  1. Key? key,
  2. dynamic onWebViewCreated(
    1. WebViewController controller
    )?,
  3. String? initialUrl,
  4. dynamic onPageStarted(
    1. String url
    )?,
  5. dynamic onPageFinished(
    1. String url
    )?,
  6. dynamic onWebResourceError(
    1. WebResourceError error
    )?,
  7. Set<Factory<OneSequenceGestureRecognizer>>? gestureRecognizers,
  8. String? initialHtmlContent,
})

Implementation

const AppBridgeWebView({
  super.key,
  this.onWebViewCreated,
  this.initialUrl,
  this.onPageStarted,
  this.onPageFinished,
  this.onWebResourceError,
  this.gestureRecognizers,
  this.initialHtmlContent,
});