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