width property

double get width

Implementation

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

Implementation

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