goForward method

Future<void> goForward()
inherited

Goes forward in the history of this WebView.

If there is no forward history item this is a no-op.

Implementation

Future<void> goForward() {
  throw UnimplementedError(
    'goForward is not implemented on the current platform',
  );
}