dateInFuture method
Validate that the date is in the future
Implementation
FormValidator dateInFuture({String? message}) {
_addRule(FormRuleDateInFuture(message));
return this;
}
Validate that the date is in the future
FormValidator dateInFuture({String? message}) {
_addRule(FormRuleDateInFuture(message));
return this;
}