Gets the number of days between two dates
int daysBetween(DateTime start, DateTime end) { return end.difference(start).inDays; }