WebViewLoadError constructor

const WebViewLoadError({
  1. required String description,
  2. int? code,
  3. String? url,
  4. bool? isForMainFrame,
})

Implementation

const WebViewLoadError({
  required this.description,
  this.code,
  this.url,
  this.isForMainFrame,
});