JsAlertRequest constructor

JsAlertRequest({
  1. @Deprecated('Use isMainFrame instead') bool? iosIsMainFrame,
  2. bool? isMainFrame,
  3. String? message,
  4. WebUri? url,
})

Implementation

JsAlertRequest(
    {@Deprecated('Use isMainFrame instead') this.iosIsMainFrame,
    this.isMainFrame,
    this.message,
    this.url}) {
  isMainFrame = isMainFrame ?? iosIsMainFrame;
}