hashCode property

  1. @override
int get hashCode
override

Returns the hash code for this ZonedDateTime.

The hash code is based on the instant in time, ensuring that two ZonedDateTime objects representing the same instant have the same hash code.

Implementation

@override
int get hashCode => toEpochMilli().hashCode;