Returns the number of days since other.
other
Example:
DateTime(2024, 1, 20).daysSince(DateTime(2024, 1, 15)); // 5
int daysSince(DateTime other) { return difference(other).inDays; }