FormValidator.dateInPast constructor

FormValidator.dateInPast({
  1. String? message,
})

Validate that the date is in the past message The message to display if the value is invalid

Implementation

FormValidator.dateInPast({this.message}) {
  rules = "date_in_past";
}