date method
Validate that the value is a date
Implementation
FormValidator date({String? message}) {
_addRule(FormRuleDate(message: message));
return this;
}
Validate that the value is a date
FormValidator date({String? message}) {
_addRule(FormRuleDate(message: message));
return this;
}