genPdfCoverList method
Implementation
Future<void> genPdfCoverList({
required String outDirPath,
required List<String> pdfPathList,
int iconSize = 300,
}) async {
await _channel.invokeMethod('$_namePdf/genPdfCoverList', {
'out_dir_path': outDirPath,
'pdf_path_list': pdfPathList,
'size': iconSize,
});
}