start method
Implementation
Future<void> start() async {
// Register a handler for the STOP protocol. This is how we receive incoming connections.
host.setStreamHandler(CircuitV2Protocol.protoIDv2Stop, _handleStreamV2);
_log.fine('CircuitV2Client started, listening for ${CircuitV2Protocol.protoIDv2Stop}');
}