clamp method

Returns a new EdgeInsetsGeometry object with all values greater than or equal to min, and less than or equal to max.

Implementation

@override
EdgeInsetsGeometry clamp(EdgeInsetsGeometry min, EdgeInsetsGeometry max) =>
    $value.clamp(min, max);