width property
Width of the Component.
Implementation
double get width => this.position.width;
set Height of the Component.
Implementation
set width(double newWidth) {
this.position = this.position.copyWith(size: Vector2(newWidth, height));
}