GeneratePdfFromDocumentsResponse constructor
GeneratePdfFromDocumentsResponse({
- required PdfCombinerStatus status,
- String outputPath = "",
- 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,
});