Files
paperless-mobile/lib/extensions/date_time_extensions.dart

6 lines
168 B
Dart

extension DateComparisons on DateTime {
bool isEqualToIgnoringDate(DateTime other) {
return day == other.day && month == other.month && year == other.year;
}
}