canGoForward method

Future<bool> canGoForward()

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

Supported Platforms/Implementations:

Implementation

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