streams property
GetStreams returns all open streams over this conn.
Implementation
@override
Future<List<P2PStream<dynamic>>> get streams {
// A RelayedConn wraps a single P2PStream to the relay.
// It does not manage a list of multiplexed streams itself.
throw UnimplementedError(
'streams getter on RelayedConn is not supported.');
// If it were to represent the stream it wraps: return Future.value([_stream]);
// But this conflicts with the semantics of Conn.streams.
}