JsPromptResponse constructor

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

Implementation

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