int calculateAge(DateTime partyDob) { final today = DateTime.now(); return today.difference(partyDob).inDays ~/ 365; }