PRuleMinDateTimeString constructor

PRuleMinDateTimeString(
  1. String? _value,
  2. DateTime min, {
  3. String message = "Minimum date is",
})

Check if the value is after the minimum date value is the value to check min is the minimum date message is the error message

Implementation

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