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