goForward method

  1. @override
Future<void> goForward()

Goes forward in the history of the WebView.

NOTE for Web: this method will have effect only if the iframe has the same origin.

Officially Supported Platforms/Implementations:

Implementation

@override
Future<void> goForward() async {
  Map<String, dynamic> args = <String, dynamic>{};
  await channel?.invokeMethod('goForward', args);
}