getPdfPageCount method

Future<int?> getPdfPageCount({
  1. required int pdf,
})

Returns the number of pages for the PDF located at given path.

Implementation

Future<int?> getPdfPageCount({
  required int pdf,
}) async {
  throw UnimplementedError('getPdfPageCount() has not been implemented.');
}