date method

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

Validate that the value is a date

Implementation

FormValidator date({String? message}) {
  _addRule(FormRuleDate(message: message));
  return this;
}