isSameTimezone method

bool isSameTimezone(
  1. Hora other
)

Checks if this is in the same timezone as another date.

Implementation

bool isSameTimezone(Hora other) => utcOffset == other.utcOffset;