GeneratePdfFromDocumentsResponse constructor
GeneratePdfFromDocumentsResponse({
- required PdfCombinerStatus status,
- String outputPath = "",
- required String message,
Creates a response object for PDF generation.
statusThe status of the PDF generation process (required).outputPathThe path of the generated PDF file (defaults to an empty string).messageAdditional information about the operation (required).
Implementation
GeneratePdfFromDocumentsResponse({
required this.status,
this.outputPath = "",
required this.message,
});