Maximum constructor

const Maximum(
  1. num? max, {
  2. bool maxExclusive = false,
})

Restricts the maximum size for a numeric type to max.

Implementation

const Maximum(
  this.max, {
  this.maxExclusive = false,
});