pageDown method

  1. @Deprecated("Use InAppWebViewController.pageDown instead")
Future<bool> pageDown({
  1. required bool bottom,
})

Implementation

@Deprecated("Use InAppWebViewController.pageDown instead")
Future<bool> pageDown({required bool bottom}) async {
  return await _controller?.pageDown(bottom: bottom) ?? false;
}