pageDown method

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

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:

Implementation

Future<bool> pageDown({required bool bottom}) {
  throw UnimplementedError(
    'pageDown is not implemented on the current platform',
  );
}