goForward method
Implementation
Future<void> goForward() async {
if (is_init == false) {
_notInitialized();
}
if (is_mobile) {
await webview_mobile_controller.goForward();
}
if (is_desktop) {
await webview_desktop_controller.forward();
}
}