height property

double height
override

set Height of the Component.

Implementation

final double height;
void height=(double newHeight)
inherited

set Height of the Component.

Implementation

set height(double newHeight) {
  this.position = this.position.copyWith(size: Vector2(width, newHeight));
}