bitswap property
Returns the BitswapHandler instance, or null if not registered.
Implementation
BitswapHandler? get bitswap {
if (_container.isRegistered(BitswapHandler)) {
return _container.get<BitswapHandler>();
}
return null;
}
Returns the BitswapHandler instance, or null if not registered.
BitswapHandler? get bitswap {
if (_container.isRegistered(BitswapHandler)) {
return _container.get<BitswapHandler>();
}
return null;
}