PDFPageReorderParams constructor

const PDFPageReorderParams({
  1. required String pdfPath,
  2. required List<int> pageNumbers,
})

Create parameters for the pdfPageReorder method.

Implementation

const PDFPageReorderParams({required this.pdfPath, required this.pageNumbers})
    : assert(pageNumbers.length > 0, 'pageNumbers cant be empty');