goForward method

Future<void> goForward()

Implementation

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