goBack method

Future<void> goBack()

Implementation

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