goBack method

  1. @override
Future<void> goBack()

Goes back 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> goBack() async {
  Map<String, dynamic> args = <String, dynamic>{};
  await channel?.invokeMethod('goBack', args);
}