ImageFromPDFResponse constructor
ImageFromPDFResponse({
- required PdfCombinerStatus status,
- List<
String> outputPaths = const [], - String? message,
Creates a response object for image extraction from a PDF.
statusThe status of the extraction process (required).outputPathsA list of file paths for the extracted images (defaults to an empty list).messageAn optional message with additional information.
Implementation
ImageFromPDFResponse({
required this.status,
this.outputPaths = const [],
this.message,
});