InvalidDateException constructor

const InvalidDateException(
  1. String message, {
  2. String? invalidDate,
})

Creates a new InvalidDateException

Implementation

const InvalidDateException(
  super.message, {
  this.invalidDate,
});