width property

double width

Implementation

double get width => _width;
void width=(double value)

Implementation

set width(double value) {
  value = math.max(16, value);
  if (_width != value) {
    _width = value;
    notifyListeners();
  }
}