canGoBack method

Future<bool> canGoBack()

Checks whether there's a back history item.

Note that this operation is asynchronous, and it is possible that the "canGoBack" state has changed by the time the future completed.

Implementation

Future<bool> canGoBack() {
  return _webViewPlatformController.canGoBack();
}