GeneratePdfFromDocumentsResponse constructor

GeneratePdfFromDocumentsResponse({
  1. required PdfCombinerStatus status,
  2. String outputPath = "",
  3. required String message,
})

Creates a response object for PDF generation.

  • status The status of the PDF generation process (required).
  • outputPath The path of the generated PDF file (defaults to an empty string).
  • message Additional information about the operation (required).

Implementation

GeneratePdfFromDocumentsResponse({
  required this.status,
  this.outputPath = "",
  required this.message,
});