maxHeight property
double?
get
maxHeight
Implementation
double? get maxHeight {
if (_maxHeight == null) return null;
if (_maxHeight == double.infinity || _maxHeight == double.negativeInfinity) {
return null;
}
if (_maxHeight!.isNegative) return null;
return _maxHeight;
}
set
maxHeight
(double? v)
Implementation
set maxHeight(double? v) => _maxHeight = v;