isAfter method

bool isAfter(
  1. HijriDateTime other
)

Returns true if this occurs after other.

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

Implementation

bool isAfter(HijriDateTime other) {
  return _date.millisecondsSinceEpoch > other._date.millisecondsSinceEpoch;
}