Subtract years from a DateTime
DateTime subtractYears(int years) { if (this == null) throw Exception("DateTime is null"); return DateTime(this!.year - years, this!.month, this!.day); }