WebViewWidget constructor

const WebViewWidget({
  1. Key? key,
  2. required String url,
  3. bool showProgressBar = true,
  4. ColorModel? progressBarColor,
  5. VoidCallback? onPageFinished,
  6. void onLoadError(
    1. String url,
    2. String message
    )?,
})

Implementation

const WebViewWidget({
  super.key,
  required this.url,
  this.showProgressBar = true,
  this.progressBarColor,
  this.onPageFinished,
  this.onLoadError,
});