height property

double? get height

Implementation

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

Implementation

set height(double? value) {
  if (value == null) {
    return;
  }
  if (value != _height) {
    _height = value;

    if (sizedBox != null) {
      sizedBox!.additionalConstraints = BoxConstraints.tight(size);
    }
  }
}