PRuleMinNumeric constructor

PRuleMinNumeric(
  1. String? _value,
  2. double min, {
  3. String message = "Minimum is",
})

Check if the value is greater than or equal to the min value value is the value to check min is the minimum value message is the error message

Implementation

PRuleMinNumeric(this._value, this.min, {this.message = "Minimum is"});