JsConfirmResponse constructor

JsConfirmResponse({
  1. String message = "",
  2. bool handledByClient = false,
  3. String confirmButtonTitle = "",
  4. String cancelButtonTitle = "",
  5. JsConfirmResponseAction? action = JsConfirmResponseAction.CANCEL,
})

Implementation

JsConfirmResponse(
    {this.message = "",
    this.handledByClient = false,
    this.confirmButtonTitle = "",
    this.cancelButtonTitle = "",
    this.action = JsConfirmResponseAction.CANCEL});