goForward method

bool goForward()

Makes browser go forward in the browser history.

Implementation

bool goForward() {
  final result = canGoForward;
  try {
    _webViewController.goForward();
  } catch (error) {
    // Ignore error
  }
  _canGoBack = true;
  _canGoForward = true;
  notifyListeners();
  return result;
}