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