goBack method

Future<void> goBack()

Goes back in the history of the WebView.

Supported Platforms/Implementations:

Implementation

Future<void> goBack() async {
  Map<String, dynamic> args = <String, dynamic>{};
  await _channel.invokeMethod('goBack', args);
}