mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-07 20:07:48 -06:00
6 lines
168 B
Dart
6 lines
168 B
Dart
extension DateComparisons on DateTime {
|
|
bool isEqualToIgnoringDate(DateTime other) {
|
|
return day == other.day && month == other.month && year == other.year;
|
|
}
|
|
}
|