How to change position for a static object in MatterJS

So, I create a physical object without a sprite like this.
this.leftWall = this.matter.add.rectangle(0, 0, wallSize, wallSize * 2, { isStatic: true });
this.leftWall.position.x = newPos it doesn’t work.
How can i do this?