pageDown method

Future<bool> pageDown({
  1. required bool bottom,
})

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

bottom true to jump to bottom of page.

Officially Supported Platforms/Implementations:

Parameters - Officially Supported Platforms/Implementations:

  • bottom: all platforms

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

Implementation

Future<bool> pageDown({required bool bottom}) =>
    platform.pageDown(bottom: bottom);