dateInPast method

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

Validate that the date is in the past

Implementation

FormValidator dateInPast({String? message}) {
  _addRule(FormRuleDateInPast(message));
  return this;
}