Check if DateTime is in the future
bool isInFuture() { if (this == null) return false; return this!.isAfter(DateTime.now()); }