isAfter method

bool isAfter(
  1. Instant other
)

Returns true if this occurs after other.

The comparison is independent of the time zone.

Implementation

bool isAfter(Instant other) => sinceEpoch > other.sinceEpoch;