goBack method
Goes back in the history of this WebView.
If there is no back history item this is a no-op.
Implementation
@override
Future<void> goBack() async {
if (jsBridge.hasReady) {
_goBackCount++;
jsBridge.evalJavaScript('window.history.back()');
}
}