canGoForward method

Future<bool> canGoForward()

Implementation

Future<bool> canGoForward() async {
  if (_controller != null && !_isDisposed) {
    return await _controller!.canGoForward();
  }
  return false;
}