CPDFExtractImageResult constructor

const CPDFExtractImageResult({
  1. required bool success,
  2. required int count,
  3. required String directoryPath,
  4. required List<String> imagePaths,
})

Creates an image extraction result.

Implementation

const CPDFExtractImageResult({
  required this.success,
  required this.count,
  required this.directoryPath,
  required this.imagePaths,
});