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