getPage method

Future<Uint8List?> getPage(
  1. int pageNumber,
  2. int width,
  3. int height,
  4. String documentID,
)
inherited

Gets the image bytes of the specified page from the document at the specified width and height.

Implementation

Future<Uint8List?> getPage(
    int pageNumber, int width, int height, String documentID) async {
  throw UnimplementedError('getPage() has not been implemented.');
}