Add years to a DateTime
DateTime addYears(int years) { if (this == null) throw Exception("DateTime is null"); return DateTime(this!.year + years, this!.month, this!.day); }