newStream method
NewStream constructs a new Stream over this conn.
Implementation
@override
Future<P2PStream> newStream(Context context) async {
if (_closed) {
throw Exception('Connection is closed');
}
throw UnimplementedError('Stream multiplexing not implemented');
}