Check if DateTime is in the past
bool isInPast() { if (this == null) return false; return this!.isBefore(DateTime.now()); }