dateInFuture method

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

Validate that the date is in the future

Implementation

FormValidator dateInFuture({String? message}) {
  _addRule(FormRuleDateInFuture(message));
  return this;
}