height property

double? get height

Implementation

double? get height => _height;
set height (double? newValue)

Implementation

set height(double? newValue) {
  if (newValue != null) {
    _height = newValue;
    sizedBox.additionalConstraints = BoxConstraints.expand(
      width: width ?? height! * aspectRatio,
      height: height,
    );
  }
}