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