initializePdfRenderer method

Future<String?> initializePdfRenderer(
  1. Uint8List documentBytes,
  2. String documentID
)

Initializes the PDF renderer instance in respective platform by loading the PDF from the specified path.

If success, returns page count else returns error message from respective platform

Implementation

Future<String?> initializePdfRenderer(
    Uint8List documentBytes, String documentID) async {
  throw UnimplementedError(
      'initializePdfRenderer() has not been implemented.');
}