ReqNum.min constructor

ReqNum.min(
  1. num min, {
  2. String? blank,
  3. String? mal,
  4. String? small,
})

Constrains data to numeric values greater than or equal to min.

min the smallest valid number. blank the error message in case of a null or empty input value. mal "malformed", the error message in case of non-numeric input values. small the error message if an input is too small.

Implementation

ReqNum.min(num min, {String? blank, String? mal, String? small})
    : this._num(Num.min(min, mal: mal, small: small), blank);