initializePdfRenderer method

Future<String?> initializePdfRenderer(
  1. Uint8List documentBytes,
  2. String documentID, [
  3. String? password
])

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, [
  String? password,
]) async {
  throw UnimplementedError(
    'initializePdfRenderer() has not been implemented.',
  );
}