LocalH5PWebView constructor

const LocalH5PWebView({
  1. Key? key,
  2. required String url,
  3. void onWebViewCreated(
    1. InAppWebViewController
    )?,
  4. void onPageLoaded()?,
})

Implementation

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