stop method

Future<void> stop()

Stops all navigations and pending resource fetches.

Implementation

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