InAppWebView constructor

const InAppWebView({
  1. Key? key,
  2. String? url,
  3. String? from,
  4. bool? showHome = false,
  5. Widget? childWidget,
  6. required dynamic onError(
    1. bool,
    2. Object
    ),
  7. required dynamic onCancel(
    1. String
    ),
})

Implementation

const InAppWebView({
  super.key,
  this.url,
  this.from,
  this.showHome = false,
  this.childWidget,
  required this.onError,
  required this.onCancel,
});