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