Add days to a DateTime
DateTime addDays(int days) { if (this == null) throw Exception("DateTime is null"); return this!.add(Duration(days: days)); }