dateInPast method
Validate that the date is in the past
Implementation
FormValidator dateInPast({String? message}) {
_addRule(FormRuleDateInPast(message));
return this;
}
Validate that the date is in the past
FormValidator dateInPast({String? message}) {
_addRule(FormRuleDateInPast(message));
return this;
}