gotoNextPage method
Goes to the next page of the document.
If on the last page, it will stay on the last page. Returns true if the action was successful; no change due to being on the last page counts as being successful.
Implementation
Future<bool?> gotoNextPage() {
return _channel.invokeMethod(Functions.gotoNextPage);
}