canGoBack method

Future<bool> canGoBack()

Returns a boolean value indicating whether the WebView can move backward.

Supported Platforms/Implementations:

Implementation

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