LocalDate.fromEpochMicroseconds constructor
LocalDate.fromEpochMicroseconds(
- EpochMicroseconds microseconds
Creates a LocalDate with the microseconds
since Unix epoch (January 1st 1970), floored to the nearest day.
LocalDate.fromEpochMicroseconds(946684800000000); // 2000-01-01
Implementation
LocalDate.fromEpochMicroseconds(super.microseconds): super.fromEpochMicroseconds();