PdfFromMultipleImageResponse constructor

PdfFromMultipleImageResponse({
  1. required PdfCombinerStatus status,
  2. String outputPath = "",
  3. 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,
});