JsPromptResponse constructor

JsPromptResponse({
  1. JsPromptResponseAction? action = JsPromptResponseAction.CANCEL,
  2. String cancelButtonTitle = "",
  3. String confirmButtonTitle = "",
  4. String defaultValue = "",
  5. bool handledByClient = false,
  6. String message = "",
  7. String? value,
})

Implementation

JsPromptResponse(
    {this.action = JsPromptResponseAction.CANCEL,
    this.cancelButtonTitle = "",
    this.confirmButtonTitle = "",
    this.defaultValue = "",
    this.handledByClient = false,
    this.message = "",
    this.value});