mirror of
https://github.com/Myzel394/quid_faciam_hodie.git
synced 2025-06-25 02:10:31 +02:00
6 lines
161 B
Dart
6 lines
161 B
Dart
extension DateExtensions on DateTime {
|
|
bool isSameDay(final DateTime other) {
|
|
return year == other.year && month == other.month && day == other.day;
|
|
}
|
|
}
|