goForward method

Future<void> goForward()

Navigates the WebView to the next page in the navigation history.

Implementation

Future<void> goForward() async {
  if (_isDisposed) {
    return;
  }
  assert(value.isInitialized);
  return _methodChannel.invokeMethod('goForward');
}