pageUp method

Future<bool> pageUp({
  1. required bool top,
})

Scrolls the contents of this WebView up by half the view size. Returns true if the page was scrolled.

top true to jump to the top of the page.

Officially Supported Platforms/Implementations:

Parameters - Officially Supported Platforms/Implementations:

  • top: all platforms

Use the PlatformInAppWebViewController.isMethodSupported method to check if this method is supported at runtime.

Implementation

Future<bool> pageUp({required bool top}) => platform.pageUp(top: top);