LocalH5PWebView constructor

const LocalH5PWebView({
  1. Key? key,
  2. required String url,
  3. void onWebViewCreated(
    1. InAppWebViewController
    )?,
  4. void onPageLoaded()?,
  5. bool listenToEvents = false,
  6. void onXApiEvent(
    1. Map<String, dynamic> xApiEvent
    )?,
})

Implementation

const LocalH5PWebView({
  super.key,
  required this.url,
  this.onWebViewCreated,
  this.onPageLoaded,
  this.listenToEvents = false,
  this.onXApiEvent,
});