LocalDate.fromEpochDays constructor
LocalDate.fromEpochDays(
- EpochDays days
Creates a LocalDate with the days
since Unix epoch (January 1st 1970).
LocalDate.fromEpochDays(10957); // '2000-01-01'
Implementation
LocalDate.fromEpochDays(super.days): super.fromEpochDays();