isAfter method

bool isAfter(
  1. EDateTime 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(EDateTime other) {
  return _date.isAfter(other._date);
}