DateTimeValidation constructor

const DateTimeValidation({
  1. String? errorCode,
  2. DateTime? before,
  3. DateTime? after,
})

Implementation

const DateTimeValidation({
  String? errorCode,
  this.before,
  this.after,
}) : super(errorCode);