Minimum constructor

const Minimum(
  1. num? min, {
  2. bool minExclusive = false,
})

Restricts the maximum size for a numeric type to min.

Implementation

const Minimum(
  this.min, {
  this.minExclusive = false,
});