height property

double get height

Implementation

double get height => (renderStyle.height.isAuto
    ? _propertyHeight
    : renderStyle.height.computedValue) ?? 0;
set height (double value)

Implementation

set height(double value) {
  _propertyHeight = value;
  if (sizedBox != null) {
    sizedBox!.additionalConstraints = BoxConstraints.tight(size);
  }
}