maxWidth property

double maxWidth

Implementation

double get maxWidth => _maxWidth;
void maxWidth=(double value)

Implementation

set maxWidth(double value) {
  _maxWidth = value >= 0 ? value : 0;
}