limitMin method
Determines the minimum limitation of two values.
If this value is greater than {minValue}, this value is returned, owherwise, {minvalue} is returned.Implementation
double limitMin(double minValue) => (this ?? minValue).limitMin(minValue);