Reads data from the stream
@override Future<Uint8List> read([int? maxLength]) async { if (_isClosed) { throw Exception('Stream $_id is closed'); } return _underlyingMuxedStream.read(maxLength); }