When I load pdf a file from assets, the document returned with page count 0.
'package:easy_pdf_viewer/src/document.dart': Failed assertion: line 168 pos 12: 'page > 0': is not true.
My code
abstract class PDFManager {
static Future<String?> getCover(String url) async {
final doc = await PDFDocument.fromAsset(url);
final cover = await doc.get(page: 0);
return cover.imgPath;
}
}
When I load pdf a file from assets, the document returned with page count 0.
'package:easy_pdf_viewer/src/document.dart': Failed assertion: line 168 pos 12: 'page > 0': is not true.My code