JsConfirmResponse.confirm constructor

JsConfirmResponse.confirm(
  1. String message,
  2. String okLabel,
  3. String cancelLabel
)

Implementation

factory JsConfirmResponse.confirm(
  String message,
  String okLabel,
  String cancelLabel,
) {
  return JsConfirmResponse._(
    message,
    okLabel,
    cancelLabel,
    false,
    null,
  );
}