MergeMultiplePDFResponse constructor
MergeMultiplePDFResponse({
- required PdfCombinerStatus status,
- String outputPath = "",
- required String message,
Creates a response object for merging multiple PDFs.
status
The status of the merging process (required).outputPath
The path of the merged PDF file (defaults to an empty string).message
Additional information about the operation (required).
Implementation
MergeMultiplePDFResponse({
required this.status,
this.outputPath = "",
required this.message,
});