isAfter method

bool isAfter(
  1. PreciseDateTime other
)

Returns true if this PreciseDateTime occurs after other.

The comparison is independent of whether the time is in UTC or in the local time zone.

final now = PreciseDateTime.now();
final later = now.add(const Duration(seconds: 5));
print(later.isAfter(now)); // true
print(!now.isBefore(now)); // true

// This relation stays the same, even when changing timezones.
print(later.isAfter(now.toUtc())); // true
print(later.toUtc().isAfter(now)); // true

print(!now.toUtc().isAfter(now)); // true
print(!now.isAfter(now.toUtc())); // true

Implementation

bool isAfter(PreciseDateTime other) {
  if (val == other.val) {
    return microsecond > other.microsecond;
  }
  return val.isAfter(other.val);
}