Returns the number of days between this date and other.
other
Example:
DateTime(2024, 1, 15).daysUntil(DateTime(2024, 1, 20)); // 5
int daysUntil(DateTime other) { return other.difference(this).inDays; }