width property

double? get width

Implementation

double? get width {
  if (_width == null) return null;
  if (_width == double.infinity || _width == double.negativeInfinity) {
    return null;
  }
  if (_width!.isNegative) return null;
  return _width;
}
set width (double? v)

Implementation

set width(double? v) => _width = v;