PdfFromMultipleImageResponse constructor
PdfFromMultipleImageResponse({
- required PdfCombinerStatus status,
- String outputPath = "",
- String? message,
Creates a response object for generating a PDF from multiple images.
statusThe status of the PDF creation process (required).outputPathThe path of the generated PDF file (defaults to an empty string).messageAn optional message with additional information.
Implementation
PdfFromMultipleImageResponse({
required this.status,
this.outputPath = "",
this.message,
});