canGoForward method
Returns a boolean value indicating whether the WebView can move forward.
Official Android API: https://developer.android.com/reference/android/webkit/WebView#canGoForward()
Official iOS API: https://developer.apple.com/documentation/webkit/wkwebview/1414962-cangoforward
Implementation
Future<bool> canGoForward() async {
Map<String, dynamic> args = <String, dynamic>{};
return await _channel.invokeMethod('canGoForward', args);
}