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