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