limitMin method

int limitMin(
  1. int minValue
)

Determines the minimum limitation of two values.

If this value is greater than {minValue}, this value is returned, owherwise, {minvalue} is returned.

Implementation

int limitMin(int minValue) => (this ?? minValue).limitMin(minValue);