isLaterDateThan method

bool isLaterDateThan(
  1. DateTime other
)

Implementation

bool isLaterDateThan(DateTime other) {
  return !(toUtc().isSameDate(other.toUtc()) ||
      toUtc().isEarlierDateThan(other.toUtc()));
}