goBack method

Future<void> goBack()

Navigates the WebView to the previous page in the navigation history.

Implementation

Future<void> goBack() async {
  if (_isDisposed) {
    return;
  }
  assert(value.isInitialized);
  return _methodChannel.invokeMethod('goBack');
}