Format DateTime to an age
int? toAge() { if (this == null) return null; return DateTime.now().difference(this!).inDays ~/ 365; }