initiateShsp method
Implementation
@override
Future<IShspInstance> initiateShsp(
PeerInfo remotePeer, IShspInstance instance, Opts opts) async {
instance = await ShspHandshakeHandler.handshakeInstance(
instance, const ShspHandshakeHandlerOptions());
_instances[remotePeer] = instance;
opts.instanceCallback?.call(instance);
return instance;
}