Webview constructor

const Webview({
  1. required String src,
  2. required String id,
  3. Function? controller_callback,
  4. dynamic loaded_callback(
    1. String url
    )?,
})

Implementation

const Webview({
  required this.src,
  required this.id,
  this.controller_callback,
  this.loaded_callback,
});