LocalDate.fromEpochMilliseconds constructor
LocalDate.fromEpochMilliseconds(
- EpochMilliseconds milliseconds
Creates a LocalDate with the milliseconds
since Unix epoch (January 1st 1970), floored to the nearest day.
LocalDate.fromEpochMilliseconds(946684800000); // 2000-01-01
Implementation
LocalDate.fromEpochMilliseconds(super.milliseconds): super.fromEpochMilliseconds();