clamp method Null safety
- EdgeInsetsGeometry min,
- EdgeInsetsGeometry max
Returns the a new EdgeInsetsGeometry object with all values greater than
or equal to min
, and less than or equal to max
.
Implementation
EdgeInsetsGeometry clamp(EdgeInsetsGeometry min, EdgeInsetsGeometry max) {
return _MixedEdgeInsets.fromLRSETB(
_left.clamp(min._left, max._left),
_right.clamp(min._right, max._right),
_start.clamp(min._start, max._start),
_end.clamp(min._end, max._end),
_top.clamp(min._top, max._top),
_bottom.clamp(min._bottom, max._bottom),
);
}