Callbacks constructor

const Callbacks({
  1. void onPageLoadProgress(
    1. int progress
    )?,
  2. void onPageLoadFinished(
    1. InAppWebViewController controller,
    2. WebUri? url
    )?,
  3. void onCallState(
    1. String state
    )?,
  4. void onPiPState(
    1. String state
    )?,
  5. Future<void> onDownloadFile(
    1. String url, [
    2. String? filename
    ])?,
})

Implementation

const Callbacks({
  this.onPageLoadProgress,
  this.onPageLoadFinished,
  this.onCallState,
  this.onPiPState,
  this.onDownloadFile,
});