stop method
Stops the web node.
Implementation
Future<void> stop() async {
if (!_started) return;
await _ipns.stop();
await _pubsub.stop();
await _bitswap.stop();
await _router.stop();
_started = false;
}
Stops the web node.
Future<void> stop() async {
if (!_started) return;
await _ipns.stop();
await _pubsub.stop();
await _bitswap.stop();
await _router.stop();
_started = false;
}