closePdfPage method

Future<int?> closePdfPage({
  1. required int pdf,
  2. required int page,
})

Close a PDF page by the given pdf identifier and the given page index.

Index is starting with 0.

Implementation

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