static bool isTomorrow(DateTime other) { return DateTime.now().year == other.year && DateTime.now().month == other.month && DateTime.now().day + 1 == other.day; }